···2# a fork of the buildEnv in the Nix distribution. Most changes should
3# eventually be merged back into the Nix distribution.
45-{ perl, runCommand, lib }:
67{ name
8···66 passAsFile = if builtins.stringLength pkgs >= 128*1024 then [ "pkgs" ] else null;
67 }
68 ''
69- ${perl}/bin/perl -w ${./builder.pl}
70 eval "$postBuild"
71 ''
···2# a fork of the buildEnv in the Nix distribution. Most changes should
3# eventually be merged back into the Nix distribution.
45+{ buildPackages, runCommand, lib }:
67{ name
8···66 passAsFile = if builtins.stringLength pkgs >= 128*1024 then [ "pkgs" ] else null;
67 }
68 ''
69+ ${buildPackages.perl}/bin/perl -w ${./builder.pl}
70 eval "$postBuild"
71 ''