gnu: guile-config: Update to 0.2.
* gnu/packages/guile.scm (guile-config): Update to 0.2. [source]: Change to github repo. [native-inputs]: Add make dist dependencies. [license]: Update license.
This commit is contained in:
parent
ac6d2e3530
commit
43d5df98f2
|
@ -1290,18 +1290,29 @@ interface for reading articles in any format.")
|
||||||
(define-public guile-config
|
(define-public guile-config
|
||||||
(package
|
(package
|
||||||
(name "guile-config")
|
(name "guile-config")
|
||||||
(version "0.1.1")
|
(version "0.2")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri (string-append
|
(uri (git-reference
|
||||||
"http://alex.pompo.co/software/" name "-" version
|
(url "https://github.com/a-sassmannshausen/guile-config")
|
||||||
".tar.gz"))
|
(commit "guile-config-0.2")))
|
||||||
|
(file-name (string-append name "-" version "-checkout"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1b719bn192f9wg24rr0zx8jpmygsvyhfi35iy778pb5p392snrn8"))))
|
"07q86vqdwmm81wwxz1d1ah27hbhs6qbn8kiizrfpj0s4bf95w3r9"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
|
(arguments
|
||||||
|
'(#:phases (modify-phases %standard-phases
|
||||||
|
(add-after 'unpack 'autoreconf
|
||||||
|
(lambda _
|
||||||
|
(zero? (system* "autoreconf" "-fi")))))))
|
||||||
|
(native-inputs
|
||||||
|
`(("autoconf" ,autoconf)
|
||||||
|
("automake" ,automake)
|
||||||
|
("pkg-config" ,pkg-config)
|
||||||
|
("texinfo" ,texinfo)))
|
||||||
(inputs
|
(inputs
|
||||||
`(("guile" ,guile-2.0)))
|
`(("guile" ,guile-2.2)))
|
||||||
(synopsis "Guile application configuration parsing library")
|
(synopsis "Guile application configuration parsing library")
|
||||||
(description
|
(description
|
||||||
"Guile Config is a library providing a declarative approach to
|
"Guile Config is a library providing a declarative approach to
|
||||||
|
@ -1312,7 +1323,7 @@ parameter parsing using getopt-long; basic GNU command-line parameter
|
||||||
generation (--help, --usage, --version); automatic output generation for the
|
generation (--help, --usage, --version); automatic output generation for the
|
||||||
above command-line parameters.")
|
above command-line parameters.")
|
||||||
(home-page "https://github.com/a-sassmannshausen/guile-config")
|
(home-page "https://github.com/a-sassmannshausen/guile-config")
|
||||||
(license license:agpl3+)))
|
(license license:gpl3+)))
|
||||||
|
|
||||||
(define-public guile-redis
|
(define-public guile-redis
|
||||||
(package
|
(package
|
||||||
|
|
Loading…
Reference in New Issue