stdenv/freebsd/cc: make overrideable fixing nixpkgs eval
stdenv.cc didn't have an override attribute on FreeBSD previously, breaking evaluation of all-packages.nix consequently. Resolves #119075.
This commit is contained in:
parent
9767460d00
commit
62ec3db017
|
@ -238,7 +238,7 @@ in
|
||||||
buildPlatform hostPlatform targetPlatform
|
buildPlatform hostPlatform targetPlatform
|
||||||
initialPath shell fetchurlBoot;
|
initialPath shell fetchurlBoot;
|
||||||
|
|
||||||
cc = import ../../build-support/cc-wrapper {
|
cc = lib.makeOverridable (import ../../build-support/cc-wrapper) {
|
||||||
inherit lib;
|
inherit lib;
|
||||||
nativeTools = true;
|
nativeTools = true;
|
||||||
nativePrefix = "/usr";
|
nativePrefix = "/usr";
|
||||||
|
|
Loading…
Reference in New Issue