summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Dvorsak <eric@dvorsak.fr>2015-08-14 16:34:27 +0200
committerEric Dvorsak <eric@dvorsak.fr>2015-08-14 16:34:27 +0200
commite0f2ef98acbed7558c19f1e0a3fb0ddb3bf602f6 (patch)
tree2405b26e746b5f9d850b5a955edcf4cb239dd91f
parentfixing licenses and descriptions (diff)
downloadguix-linux-nonfree-e0f2ef98acbed7558c19f1e0a3fb0ddb3bf602f6.tar.gz
adding libconfuse
-rw-r--r--i3.scm19
1 files changed, 19 insertions, 0 deletions
diff --git a/i3.scm b/i3.scm
index a346ab4..367ecd6 100644
--- a/i3.scm
+++ b/i3.scm
@@ -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")