perl: rename miniperl output from dev to mini

This commit is contained in:
Ben Wolsieffer
2020-08-17 13:43:42 -04:00
parent c8003b550a
commit d61f1a4a5f
2 changed files with 9 additions and 9 deletions
@@ -42,7 +42,7 @@ toPerlModule(stdenv.mkDerivation (
version = lib.getVersion attrs; # TODO: phase-out `attrs.name`
builder = ./builder.sh;
buildInputs = buildInputs ++ [ perl ];
nativeBuildInputs = nativeBuildInputs ++ [ (perl.dev or perl) ];
nativeBuildInputs = nativeBuildInputs ++ [ (perl.mini or perl) ];
fullperl = buildPerl;
}
))