guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch master updated: gnu: Add perl-config-grammar.


From: guix-commits
Subject: branch master updated: gnu: Add perl-config-grammar.
Date: Sun, 09 Feb 2020 18:10:45 -0500

This is an automated email from the git hooks/post-receive script.

ngz pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 1c8b70c  gnu: Add perl-config-grammar.
1c8b70c is described below

commit 1c8b70c875843b98cd0ddac366f6a9272d335a46
Author: Vincent Legoll <address@hidden>
AuthorDate: Sun Feb 9 23:01:58 2020 +0100

    gnu: Add perl-config-grammar.
    
    * gnu/packages/perl.scm (perl-config-grammar): New variable.
---
 gnu/packages/perl.scm | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm
index 9fc3493..f513a78 100644
--- a/gnu/packages/perl.scm
+++ b/gnu/packages/perl.scm
@@ -23,6 +23,7 @@
 ;;; Copyright © 2018 Kei Kebreau <address@hidden>
 ;;; Copyright © 2019 Alex Griffin <address@hidden>
 ;;; Copyright © 2019 Stephen J. Scheck <address@hidden>
+;;; Copyright © 2020 Vincent Legoll <address@hidden>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -1380,6 +1381,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")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]