summary refs log tree commit diff
path: root/pkgs/development/perl-modules/generic/default.nix
blob: 2909664bf8793a5f9eec3615b907f457eb8fcdc5 (plain) (blame)
1
2
3
4
5
6
7
8
9
perl:

attrs:

perl.stdenv.mkDerivation (attrs // {
  name = "perl-" + attrs.name;
  builder = ./builder.sh;
  buildInputs = [(if attrs ? buildInputs then attrs.buildInputs else []) perl];
})