diff options
author | Eric Dvorsak <eric@dvorsak.fr> | 2015-08-17 22:06:05 +0200 |
---|---|---|
committer | Eric Bavier <bavier@member.fsf.org> | 2015-08-23 11:30:41 -0500 |
commit | 5c37126f68a127edf140051651f25771a4db8a11 (patch) | |
tree | 01a08ec08478b901bb3b1e6af1d0607ad767031d /gnu | |
parent | bda2ded6b665c1c40d798a523a4163c9295d16a4 (diff) | |
download | patches-5c37126f68a127edf140051651f25771a4db8a11.tar patches-5c37126f68a127edf140051651f25771a4db8a11.tar.gz |
gnu: Add libconfuse.
* gnu/packages/wm.scm (libconfuse): New variable.
Signed-off-by: Eric Bavier <bavier@member.fsf.org>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/wm.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm index 50c5f6f1c6..0106cdd442 100644 --- a/gnu/packages/wm.scm +++ b/gnu/packages/wm.scm @@ -39,6 +39,27 @@ #:use-module (guix download) #:use-module (guix git-download)) +(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 "libconfuse is 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).") + (license isc))) + (define-public i3-wm (package (name "i3-wm") |