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 /overrides/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 'overrides/default.nix')
-rw-r--r-- | overrides/default.nix | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/overrides/default.nix b/overrides/default.nix deleted file mode 100644 index 8bc49dec475a..000000000000 --- a/overrides/default.nix +++ /dev/null @@ -1,13 +0,0 @@ -# This file is used to move things from nested attribute sets to the -# top-level. -{ depot, ... }: - -{ - buildGo = depot.nix.buildGo; # TODO(tazjin): remove this - - # These packages must be exposed for compatibility with buildGo. - # - # Despite buildGo being tracked in this tree, I want it to be possible - # for external users to import it with the default nixpkgs layout. - inherit (depot.third_party) go ripgrep; -} |