summaryrefslogtreecommitdiff
path: root/gnu/packages
diff options
context:
space:
mode:
authorEfraim Flashner <efraim@flashner.co.il>2022-12-06 10:43:05 +0200
committerEfraim Flashner <efraim@flashner.co.il>2022-12-06 10:43:05 +0200
commit47f28e5536f124f331e39243c771a91fcce0ed9a (patch)
tree733d57bbdffcaf15b1559df44ccdcac57397f6f8 /gnu/packages
parent41a904c8b366bbe79fa4bef530ea4edd67e4de60 (diff)
gnu: Add perl-getopt-argvfile.
* gnu/packages/perl.scm (perl-getopt-argvfile): New variable.
Diffstat (limited to 'gnu/packages')
-rw-r--r--gnu/packages/perl.scm21
1 files changed, 21 insertions, 0 deletions
diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm
index 0e21176751d..26d20e45931 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
5206back to a full directory scan if none of these are available.") 5206back to a full directory scan if none of these are available.")
5207 (license license:perl-license))) 5207 (license license:perl-license)))
5208 5208
5209(define-public perl-getopt-argvfile
5210 (package
5211 (name "perl-getopt-argvfile")
5212 (version "1.11")
5213 (source (origin
5214 (method url-fetch)
5215 (uri (string-append
5216 "mirror://cpan/authors/id/J/JS/JSTENZEL/Getopt-ArgvFile-"
5217 version
5218 ".tar.gz"))
5219 (sha256
5220 (base32
5221 "08jvhfqcjlsn013x96qa6paif0095x6y60jslp8p3zg67i8sl29p"))))
5222 (build-system perl-build-system)
5223 (home-page "https://metacpan.org/release/Getopt-ArgvFile")
5224 (synopsis "Perl module for reading script options and parameters from files")
5225 (description "This module simply interpolates option file hints in @code{@@ARGV}
5226by the contents of the pointed files. This enables option reading from files instead
5227of or additional to the usual reading from the command line.")
5228 (license license:artistic2.0)))
5229
5209(define-public perl-getopt-long 5230(define-public perl-getopt-long
5210 (package 5231 (package
5211 (name "perl-getopt-long") 5232 (name "perl-getopt-long")