[cpan2nix] perlPackages.SCGI: cleanup

This commit is contained in:
volth 2018-04-07 07:53:00 +00:00
parent efdf0db918
commit fa663af25d

View File

@ -12234,14 +12234,13 @@ let self = _self // overrides; _self = with self; {
buildInputs = [ ModuleBuild ]; buildInputs = [ ModuleBuild ];
}; };
SCGI = buildPerlPackage rec { SCGI = buildPerlModule rec {
name = "SCGI-0.6"; name = "SCGI-0.6";
src = fetchurl { src = fetchurl {
url = "mirror://cpan/authors/id/V/VI/VIPERCODE/${name}.tar.gz"; url = "mirror://cpan/authors/id/V/VI/VIPERCODE/${name}.tar.gz";
sha256 = "196rj47mh4fq2vlnw595q391zja5v6qg7s3sy0vy8igfyid8rdsq"; sha256 = "196rj47mh4fq2vlnw595q391zja5v6qg7s3sy0vy8igfyid8rdsq";
}; };
preConfigure = "export HOME=$(mktemp -d)"; preConfigure = "export HOME=$(mktemp -d)";
buildInputs = [ ModuleBuild ];
}; };
ScopeGuard = buildPerlPackage { ScopeGuard = buildPerlPackage {