Skip to content

Commit df0c60c

Browse files
committed
mkArgc: make name from args because of loss of laziness here NixOS/nixpkgs#412768
1 parent 944537b commit df0c60c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkgs/mkArgc.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
scope: with scope;
22
args: (stdenv.mkDerivation (attrs:
33
let
4-
name = attrs.pname or attrs.name;
4+
name = args.pname or args.name; # FIXME this isn't overridable anymore
55
in
66
{
77
dontUnpack = true;

0 commit comments

Comments
 (0)