1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-16 12:00:35 +02:00

Merge branch 'master' into core-updates

This commit is contained in:
Marius Bakke 2020-02-14 19:05:45 +01:00
commit 7edafc884c
No known key found for this signature in database
GPG key ID: A2A06DF2A33A54FA
143 changed files with 11626 additions and 4364 deletions

View file

@ -24,6 +24,7 @@
;;; Copyright © 2019 Alex Griffin <a@ajgrf.com>
;;; Copyright © 2019 Mathieu Othacehe <m.othacehe@gmail.com>
;;; Copyright © 2019 Stephen J. Scheck <sscheck@cpan.org>
;;; Copyright © 2020 Vincent Legoll <vincent.legoll@gmail.com>
;;;
;;; This file is part of GNU Guix.
;;;
@ -1371,6 +1372,26 @@ parser in your Perl programme and allows sharing configuration files between
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")