1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

init perlPackages.GetoptArgvFile at 1.11

This commit is contained in:
Pascal Wittmann 2018-06-10 18:40:21 +02:00
parent ee1faf5881
commit 95a8cb3ade
No known key found for this signature in database
GPG key ID: C899ACE7E2322852

View file

@ -6512,6 +6512,18 @@ let self = _self // overrides; _self = with self; {
doCheck = false; # seems to access the network
};
GetoptArgvFile = buildPerlPackage rec {
name = "Getopt-ArgvFile-1.11";
src = fetchurl {
url = "mirror://cpan/authors/id/J/JS/JSTENZEL/${name}.tar.gz";
sha256 = "3709aa513ce6fd71d1a55a02e34d2f090017d5350a9bd447005653c9b0835b22";
};
meta = {
license = stdenv.lib.licenses.artistic1;
maintainers = [ maintainers.pSub ];
};
};
GetoptLong = buildPerlPackage rec {
name = "Getopt-Long-2.50";
src = fetchurl {