mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 05:18:07 -05:00
gnu: Add perl-config-grammar.
* gnu/packages/perl.scm (perl-config-grammar): New variable.
This commit is contained in:
parent
e813444287
commit
1c8b70c875
1 changed files with 21 additions and 0 deletions
|
@ -23,6 +23,7 @@
|
|||
;;; Copyright © 2018 Kei Kebreau <kkebreau@posteo.net>
|
||||
;;; Copyright © 2019 Alex Griffin <a@ajgrf.com>
|
||||
;;; Copyright © 2019 Stephen J. Scheck <sscheck@cpan.org>
|
||||
;;; Copyright © 2020 Vincent Legoll <vincent.legoll@gmail.com>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -1380,6 +1381,26 @@ (define-public perl-conf-libconfig
|
|||
languages.")
|
||||
(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
|
||||
(package
|
||||
(name "perl-config-any")
|
||||
|
|
Loading…
Reference in a new issue