gnu: Add perl-getopt-argvfile.

* gnu/packages/perl.scm (perl-getopt-argvfile): New variable.
This commit is contained in:
Efraim Flashner 2022-12-06 10:43:05 +02:00
parent 41a904c8b3
commit 47f28e5536
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351

View File

@ -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")