[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/01: gnu: Add guile-config.
From: |
Christopher Allan Webber |
Subject: |
01/01: gnu: Add guile-config. |
Date: |
Tue, 16 Feb 2016 19:26:02 +0000 |
cwebber pushed a commit to branch master
in repository guix.
commit 44a2bdf8e7b1d4a30463ac58c730fdfcd925d3aa
Author: Alex Sassmannshausen <address@hidden>
Date: Sun Feb 14 19:23:24 2016 +0100
gnu: Add guile-config.
* gnu/packages/guile.scm (guile-config): New variable.
---
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 e6e7228..0643dc6 100644
--- a/gnu/packages/guile.scm
+++ b/gnu/packages/guile.scm
@@ -2,6 +2,7 @@
;;; Copyright © 2012, 2013, 2014, 2015, 2016 Ludovic Courtès <address@hidden>
;;; Copyright © 2014, 2015 Mark H Weaver <address@hidden>
;;; Copyright © 2015 Christopher Allan Webber <address@hidden>
+;;; Copyright © 2016 Alex Sassmannshausen <address@hidden>
;;;
;;; 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")