1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

stdenv/freebsd: don't inherit curl from previous stage (#340913)

This commit is contained in:
Aleksana 2024-09-11 09:12:33 +08:00 committed by GitHub
commit cda49c202f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -485,7 +485,6 @@ in
# we can import the foundational libs from boot-0
# we can import bins and libs that DON'T get imported OR LINKED into the final stdenv from boot-0
curl = prevStage.curlReal;
curlReal = super.curl;
inherit (prevStage)
fetchurl
python3
@ -511,7 +510,6 @@ in
name = "freebsd";
overrides = prevStage: self: super: {
__bootstrapArchive = bootstrapArchive;
curl = prevStage.curlReal;
fetchurl = prevStage.fetchurlReal;
freebsd = super.freebsd.overrideScope (
self': super': { localesPrev = prevStage.freebsd.localesReal; }