From e0f2ef98acbed7558c19f1e0a3fb0ddb3bf602f6 Mon Sep 17 00:00:00 2001 From: Eric Dvorsak Date: Fri, 14 Aug 2015 16:34:27 +0200 Subject: adding libconfuse --- i3.scm | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) 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") -- cgit v1.2.3