guix-commits
[Top][All Lists]
Advanced

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

02/09: gnu: Add perl-getopt-argvfile.


From: guix-commits
Subject: 02/09: gnu: Add perl-getopt-argvfile.
Date: Tue, 6 Dec 2022 04:42:27 -0500 (EST)

efraim pushed a commit to branch master
in repository guix.

commit 47f28e5536f124f331e39243c771a91fcce0ed9a
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Tue Dec 6 10:43:05 2022 +0200

    gnu: Add perl-getopt-argvfile.
    
    * gnu/packages/perl.scm (perl-getopt-argvfile): 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 0e21176751..26d20e4593 100644
--- a/gnu/packages/perl.scm
+++ b/gnu/packages/perl.scm
@@ -5206,6 +5206,27 @@ Linux, fsevents on OS X, @code{kqueue} on FreeBSD, and
 back to a full directory scan if none of these are available.")
     (license license:perl-license)))
 
+(define-public perl-getopt-argvfile
+  (package
+    (name "perl-getopt-argvfile")
+    (version "1.11")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                     "mirror://cpan/authors/id/J/JS/JSTENZEL/Getopt-ArgvFile-"
+                     version
+                     ".tar.gz"))
+              (sha256
+               (base32
+                "08jvhfqcjlsn013x96qa6paif0095x6y60jslp8p3zg67i8sl29p"))))
+    (build-system perl-build-system)
+    (home-page "https://metacpan.org/release/Getopt-ArgvFile";)
+    (synopsis "Perl module for reading script options and parameters from 
files")
+    (description "This module simply interpolates option file hints in 
@code{@@ARGV}
+by the contents of the pointed files.  This enables option reading from files 
instead
+of or additional to the usual reading from the command line.")
+    (license license:artistic2.0)))
+
 (define-public perl-getopt-long
   (package
     (name "perl-getopt-long")



reply via email to

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