diff options
| author | Eric Dvorsak <eric@dvorsak.fr> | 2015-08-14 16:34:27 +0200 |
|---|---|---|
| committer | Eric Dvorsak <eric@dvorsak.fr> | 2015-08-14 16:34:27 +0200 |
| commit | e0f2ef98acbed7558c19f1e0a3fb0ddb3bf602f6 (patch) | |
| tree | 2405b26e746b5f9d850b5a955edcf4cb239dd91f | |
| parent | fixing licenses and descriptions (diff) | |
| download | guix-nonfree-e0f2ef98acbed7558c19f1e0a3fb0ddb3bf602f6.tar.gz | |
adding libconfuse
| -rw-r--r-- | i3.scm | 19 |
1 files changed, 19 insertions, 0 deletions
@@ -145,6 +145,25 @@ "file://LICENSE" "See LICENSE in the distribution.")))) + +(define-public libconfuse + (package + (name "libconfuse") + (version "2.7") + (source (origin + (method url-fetch) + (uri (string-append "http://savannah.nongnu.org/download/confuse/confuse-" + version + ".tar.gz")) + (sha256 + (base32 "0y47r2ashz44wvnxdb18ivpmj8nxhw3y9bf7v9w0g5byhgyp89g3")))) + (build-system gnu-build-system) + (home-page "http://www.nongnu.org/confuse/") + (synopsis "Configuration file parser library") + (description "A configuration file parser library. It supports sections and (lists of) values (strings, integers, floats, booleans or other sections), as well as some other features (such as single/double-quoted strings, environment variable expansion, functions and nested include statements). It makes it very easy to add configuration file capability to a program using a simple API. ") + (license isc))) + + (define-public i3 (package (name "i3") |
