61e7bd7372
svn path=/nixpkgs/trunk/; revision=14041
19 lines
267 B
Nix
19 lines
267 B
Nix
perl:
|
|
|
|
attrs:
|
|
|
|
perl.stdenv.mkDerivation (
|
|
{
|
|
doCheck = true;
|
|
checkTarget = "test";
|
|
}
|
|
//
|
|
attrs
|
|
//
|
|
{
|
|
name = "perl-" + attrs.name;
|
|
builder = ./builder.sh;
|
|
buildInputs = [(if attrs ? buildInputs then attrs.buildInputs else []) perl];
|
|
}
|
|
)
|