Skip to content

Commit a072225

Browse files
authored
myEnvFun: fix build
This broke in ebd18cf. replaceVars is not needed on setup.sh since 15103e5.
1 parent e7e64b5 commit a072225

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

pkgs/misc/my-env/default.nix

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,6 @@
6666
name,
6767
buildInputs ? [ ],
6868
propagatedBuildInputs ? [ ],
69-
gcc ? stdenv.cc,
7069
extraCmds ? "",
7170
cleanupCmds ? "",
7271
shell ? "${pkgs.bashInteractive}/bin/bash --norc",
@@ -80,9 +79,7 @@ mkDerivation {
8079
"buildPhase"
8180
"fixupPhase"
8281
];
83-
setupNew = replaceVars ../../stdenv/generic/setup.sh {
84-
inherit gcc;
85-
};
82+
setupNew = ../../stdenv/generic/setup.sh;
8683

8784
buildPhase =
8885
let

0 commit comments

Comments
 (0)