On Mon, 17 Aug 2015 22:06:05 +0200 Eric Dvorsak <e...@dvorsak.fr> wrote:
> * gnu/packages/i3.scm (libconfuse): New variable. > --- > gnu/packages/i3.scm | 21 +++++++++++++++++++++ > 1 file changed, 21 insertions(+) > > diff --git a/gnu/packages/i3.scm b/gnu/packages/i3.scm > index 89837db..3daaa9b 100644 > --- a/gnu/packages/i3.scm > +++ b/gnu/packages/i3.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 "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") This is pushed with a small change to the description: "libconfuse is a configuration file parser library..." Thanks, `~Eric