diff options
-rw-r--r-- | default.nix | 3 | ||||
-rw-r--r-- | third_party/overlays/tvl.nix | 2 |
2 files changed, 1 insertions, 4 deletions
diff --git a/default.nix b/default.nix index 640f6fda959a..2ac136404dfb 100644 --- a/default.nix +++ b/default.nix @@ -112,9 +112,6 @@ readTree.fix (self: (readDepot { # generate pipelines because that also leads to infinite # recursion. ops = self.ops // { pipelines = null; }; - - # remove nixpkgs from the set, for obvious reasons. - third_party = self.third_party // { nixpkgs = null; }; }); # Derivation that gcroots all depot targets. diff --git a/third_party/overlays/tvl.nix b/third_party/overlays/tvl.nix index 7dd9445eb0b3..bb41ec129e53 100644 --- a/third_party/overlays/tvl.nix +++ b/third_party/overlays/tvl.nix @@ -32,7 +32,7 @@ let } ).tarball; in -{ +depot.nix.readTree.drvTargets { nix_2_3 = super.nix_2_3.overrideAttrs (_: { src = "${nixTarball}/tarballs/nix-${nixTarball.version}.tar.xz"; }); |