gnu: Add perl-config-grammar.
* gnu/packages/perl.scm (perl-config-grammar): New variable.master
parent
e813444287
commit
1c8b70c875
|
@ -23,6 +23,7 @@
|
||||||
;;; Copyright © 2018 Kei Kebreau <kkebreau@posteo.net>
|
;;; Copyright © 2018 Kei Kebreau <kkebreau@posteo.net>
|
||||||
;;; Copyright © 2019 Alex Griffin <a@ajgrf.com>
|
;;; Copyright © 2019 Alex Griffin <a@ajgrf.com>
|
||||||
;;; Copyright © 2019 Stephen J. Scheck <sscheck@cpan.org>
|
;;; Copyright © 2019 Stephen J. Scheck <sscheck@cpan.org>
|
||||||
|
;;; Copyright © 2020 Vincent Legoll <vincent.legoll@gmail.com>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -1380,6 +1381,26 @@ parser in your Perl programme and allows sharing configuration files between
|
||||||
languages.")
|
languages.")
|
||||||
(license bsd-3)))
|
(license bsd-3)))
|
||||||
|
|
||||||
|
(define-public perl-config-grammar
|
||||||
|
(package
|
||||||
|
(name "perl-config-grammar")
|
||||||
|
(version "1.13")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append "mirror://cpan/authors/id/D/DS/DSCHWEI/"
|
||||||
|
"Config-Grammar-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32 "1qynf5bk6mnk90nggm3z8rdz2535kmqg46s0vj93pi68r6ia7cx8"))))
|
||||||
|
(build-system perl-build-system)
|
||||||
|
(home-page "https://metacpan.org/release/Config-Grammar")
|
||||||
|
(synopsis "Grammar-based config parser")
|
||||||
|
(description
|
||||||
|
"Config::Grammar is a module to parse configuration files. The
|
||||||
|
configuration may consist of multiple-level sections with assignments and
|
||||||
|
tabular data.")
|
||||||
|
(license (package-license perl))))
|
||||||
|
|
||||||
(define-public perl-config-any
|
(define-public perl-config-any
|
||||||
(package
|
(package
|
||||||
(name "perl-config-any")
|
(name "perl-config-any")
|
||||||
|
|
Reference in New Issue