From mboxrd@z Thu Jan 1 00:00:00 1970 From: Eric Dvorsak Subject: [PATCH 6/7] gnu: Add libconfuse. Date: Mon, 17 Aug 2015 04:06:01 +0200 Message-ID: <1439777162-7769-6-git-send-email-eric@dvorsak.fr> References: <1439777162-7769-1-git-send-email-eric@dvorsak.fr> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:41879) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZR9oh-00072n-Gq for guix-devel@gnu.org; Sun, 16 Aug 2015 22:06:28 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZR9oe-0004Sr-RR for guix-devel@gnu.org; Sun, 16 Aug 2015 22:06:27 -0400 Received: from 15.mo1.mail-out.ovh.net ([188.165.38.232]:58270) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZR9oe-0004Sh-LO for guix-devel@gnu.org; Sun, 16 Aug 2015 22:06:24 -0400 Received: from mail434.ha.ovh.net (gw6.ovh.net [213.251.189.206]) by mo1.mail-out.ovh.net (Postfix) with SMTP id 2EE02FFB05E for ; Mon, 17 Aug 2015 04:06:24 +0200 (CEST) In-Reply-To: <1439777162-7769-1-git-send-email-eric@dvorsak.fr> List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: guix-devel@gnu.org * 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 d324a10..8895a28 100644 --- a/gnu/packages/i3.scm +++ b/gnu/packages/i3.scm @@ -38,6 +38,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). It makes it very easy to +add configuration file capability to a program using a simple API. ") + (license isc))) + (define-public i3-wm (package (name "i3-wm") -- 2.4.3