diff options
| author | Ricardo Wurmus <rekado@elephly.net> | 2015-09-03 13:28:25 +0200 |
|---|---|---|
| committer | Ricardo Wurmus <rekado@elephly.net> | 2016-08-01 14:06:03 +0200 |
| commit | a4e6356e110bb2cd3ad90d8943fd6a700de97ca8 (patch) | |
| tree | 540c939cdbfbc95358f2937a7a9eca0f770a827d | |
| parent | 26af1c8d13dfc08f6b703dbd3d6add95ffb1d220 (diff) | |
gnu: Add trio.
* gnu/packages/code.scm (trio): New variable.
| -rw-r--r-- | gnu/packages/code.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/code.scm b/gnu/packages/code.scm index 64df95ded6f..63a92807082 100644 --- a/gnu/packages/code.scm +++ b/gnu/packages/code.scm | |||
| @@ -229,6 +229,29 @@ files, but compared to grep is much faster and respects files like .gitignore, | |||
| 229 | .hgignore, etc.") | 229 | .hgignore, etc.") |
| 230 | (license license:asl2.0))) | 230 | (license license:asl2.0))) |
| 231 | 231 | ||
| 232 | (define-public trio | ||
| 233 | (package | ||
| 234 | (name "trio") | ||
| 235 | (version "1.16") | ||
| 236 | (source (origin | ||
| 237 | (method url-fetch) | ||
| 238 | (uri (string-append "mirror://sourceforge/ctrio/trio/trio-" | ||
| 239 | version ".tar.gz")) | ||
| 240 | (sha256 | ||
| 241 | (base32 | ||
| 242 | "02pwd5m5vq7hbrffgm2na1dfc249z50yyr5jv73vdw15bd7ygl44")))) | ||
| 243 | (build-system gnu-build-system) | ||
| 244 | (home-page "http://daniel.haxx.se/projects/trio/") | ||
| 245 | (synopsis "Portable and extendable printf and string functions") | ||
| 246 | (description | ||
| 247 | "Trio is a set of @code{printf} and string functions designed be used by | ||
| 248 | applications with a focus on portability or with the need for additional | ||
| 249 | features that are not supported by the standard @code{stdio} implementation.") | ||
| 250 | ;; This license is very similar to the ISC license, but the wording is | ||
| 251 | ;; slightly different. | ||
| 252 | (license (license:non-copyleft | ||
| 253 | "http://sourceforge.net/p/ctrio/git/ci/master/tree/README")))) | ||
| 254 | |||
| 232 | (define-public withershins | 255 | (define-public withershins |
| 233 | (package | 256 | (package |
| 234 | (name "withershins") | 257 | (name "withershins") |
