Commit 5da4fa1d authored by Audrey Dutcher's avatar Audrey Dutcher
Browse files

stdenv/freebsd: don't inherit curl from previous stage

This was adding dependencies on the bootstrap files for longer than
necessary.
parent 5bf8cbcb
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -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; }