diff options
author | Vincent Ambo <mail@tazj.in> | 2021-03-23T21·46+0200 |
---|---|---|
committer | tazjin <mail@tazj.in> | 2021-03-23T23·55+0000 |
commit | aaaadbbcdc8234a5cdafa9591b823acddb3897da (patch) | |
tree | 13c6d7d59f6fb024fc5f8810c82fb1ace5b4d4b5 /default.nix | |
parent | 77141525ad9a891bac829d015e486bf9004b48cf (diff) |
chore: Remove //overrides from depot r/2325
This mechanism wasn't actually used for anything other than a minor external compatibility thing for buildGo.nix, which can also be solved with a function parameter. This breaks //fun/gemma because it means that the elmPackages used to build it are no longer reachable from depot. We'll sort this out later. Change-Id: I1bf2240435e869cdc4e99bdd1a138fdd2e76f96e Reviewed-on: https://cl.tvl.fyi/c/depot/+/2646 Tested-by: BuildkiteCI Reviewed-by: sterni <sternenseemann@systemli.org>
Diffstat (limited to 'default.nix')
-rw-r--r-- | default.nix | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/default.nix b/default.nix index b95e73ff3a1f..dd0af9c9bfb5 100644 --- a/default.nix +++ b/default.nix @@ -71,6 +71,7 @@ let (node.meta.targets or [])) else []; in fix(self: { + __readTree = []; config = config self; # Elevate 'lib' from nixpkgs @@ -100,10 +101,4 @@ in fix(self: { # Add local packages as structured by readTree // (localPkgs (readTree' self.config)) - -# Load overrides into the top-level. -# -# This can be used to move things from third_party into the top-level, too (such -# as `lib`). -// (readTree' { depot = self; pkgs = self.third_party; }) ./overrides ) |