diff options
author | Alex Sassmannshausen <alex.sassmannshausen@gmail.com> | 2016-02-14 19:23:24 +0100 |
---|---|---|
committer | Christopher Allan Webber <cwebber@dustycloud.org> | 2016-02-16 11:24:08 -0800 |
commit | 44a2bdf8e7b1d4a30463ac58c730fdfcd925d3aa (patch) | |
tree | 336f50df43a0c0dc00ce83814bb6d17e1e9c3bc6 | |
parent | 1486d67ee8e58d86a8415808b44e362eaa8b313c (diff) | |
download | guix-44a2bdf8e7b1d4a30463ac58c730fdfcd925d3aa.tar guix-44a2bdf8e7b1d4a30463ac58c730fdfcd925d3aa.tar.gz |
gnu: Add guile-config.
* gnu/packages/guile.scm (guile-config): New variable.
-rw-r--r-- | gnu/packages/guile.scm | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/gnu/packages/guile.scm b/gnu/packages/guile.scm index e6e722883f..0643dc6f05 100644 --- a/gnu/packages/guile.scm +++ b/gnu/packages/guile.scm @@ -2,6 +2,7 @@ ;;; Copyright © 2012, 2013, 2014, 2015, 2016 Ludovic Courtès <ludo@gnu.org> ;;; Copyright © 2014, 2015 Mark H Weaver <mhw@netris.org> ;;; Copyright © 2015 Christopher Allan Webber <cwebber@dustycloud.org> +;;; Copyright © 2016 Alex Sassmannshausen <alex@pompo.co> ;;; ;;; This file is part of GNU Guix. ;;; @@ -731,6 +732,33 @@ interface for reading articles in any format.") (home-page "http://haunt.dthompson.us") (license gpl3+))) +(define-public guile-config + (package + (name "guile-config") + (version "0.1") + (source (origin + (method url-fetch) + (uri (string-append + "http://alex.pompo.co/software/" name "-" version + ".tar.gz")) + (sha256 + (base32 + "0fcj2d91z7nhm9k79zkc826l8i06khqvp3d641wik9s3hv6qjya2")))) + (build-system gnu-build-system) + (inputs + `(("guile" ,guile-2.0))) + (synopsis "Guile application configuration parsing library") + (description + "Guile Config is a library providing a declarative approach to +application configuration specification. The library provides clean +configuration declaration forms, and processors that take care of: +configuration file creation; configuration file parsing; command-line +parameter parsing using getopt-long; basic GNU command-line parameter +generation (--help, --usage, --version); automatic output generation for the +above command-line parameters.") + (home-page "https://github.com/a-sassmannshausen/guile-config") + (license agpl3+))) + (define-public guile-redis (package (name "guile-redis") |