guix-patches
[Top][All Lists]
Advanced

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

[bug#63894] [PATCH 14/55] gnu: Add perl-config-simple.


From: Antero Mejr
Subject: [bug#63894] [PATCH 14/55] gnu: Add perl-config-simple.
Date: Sun, 4 Jun 2023 17:42:08 +0000

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

diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm
index 584222dc28..4d456d0f06 100644
--- a/gnu/packages/perl.scm
+++ b/gnu/packages/perl.scm
@@ -2131,6 +2131,28 @@ (define-public perl-config-tiny
 many other @code{Config::*} modules.")
     (license license:perl-license)))
 
+(define-public perl-config-simple
+  (package
+    (name "perl-config-simple")
+    (version "4.58")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "mirror://cpan/authors/id/S/SH/SHERZODR/Config-Simple-"
+                    version ".tar.gz"))
+              (sha256
+               (base32
+                "1d7dhvis1i03xlj8z3g5l8mz88kf7dn13zngbjhq94qgdxq9b6fx"))))
+    (build-system perl-build-system)
+    (home-page "https://metacpan.org/release/Config-Simple";)
+    (synopsis "Simple configuration file class")
+    (description
+     "@code{Config::Simple} is a class representing configuration file object.
+It supports several configuration file syntax and tries to identify the file
+syntax automatically.  The library supports parsing, updating and creating
+configuration files.")
+    (license license:perl-license)))
+
 (define-public perl-const-fast
   (package
     (name "perl-const-fast")
-- 
2.39.2






reply via email to

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