3
0
Fork 0
forked from mirrors/nixpkgs

[cpan2nix] perlPackages.IOSocketInet6: cleanup

This commit is contained in:
volth 2018-06-23 10:12:35 +00:00
parent edd4d5ad7e
commit 590a55a568

View file

@ -7811,13 +7811,13 @@ let self = _self // overrides; _self = with self; {
};
};
IOSocketInet6 = buildPerlPackage rec {
IOSocketInet6 = buildPerlModule rec {
name = "IO-Socket-INET6-2.72";
src = fetchurl {
url = "mirror://cpan/authors/id/S/SH/SHLOMIF/${name}.tar.gz";
sha256 = "1fqypz6qa5rw2d5y2zq7f49frwra0aln13nhq5gi514j2zx21q45";
};
propagatedBuildInputs = [Socket6];
propagatedBuildInputs = [ Socket6 ];
doCheck = false;
};