diff options
author | sterni <sternenseemann@systemli.org> | 2023-03-01T14·15+0100 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2023-03-07T21·09+0000 |
commit | c82abd42e33d1ee1c6b6e23f598da4b757579ef0 (patch) | |
tree | 588527678851572d90fb632228491e38010715c5 /third_party/overlays | |
parent | 89d9ce39b4c2d61e446fc5efdfe925f8835c9930 (diff) |
fix(3p/overlays/tvl): use our patched Nix 2.3 for nix-serve r/5896
This should avoid having two builds of Nix 2.3 in the closure of whitby and sanduny. Change-Id: Id4b8d34da73d3f579c97adcda44df26992290764 Reviewed-on: https://cl.tvl.fyi/c/depot/+/8192 Reviewed-by: tazjin <tazjin@tvl.su> Autosubmit: sterni <sternenseemann@systemli.org> Tested-by: BuildkiteCI
Diffstat (limited to 'third_party/overlays')
-rw-r--r-- | third_party/overlays/tvl.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/third_party/overlays/tvl.nix b/third_party/overlays/tvl.nix index 950c01798fe7..a71ef8a24ed7 100644 --- a/third_party/overlays/tvl.nix +++ b/third_party/overlays/tvl.nix @@ -105,7 +105,7 @@ depot.nix.readTree.drvTargets { # nix-serve does not work with nix 2.4 # https://github.com/edolstra/nix-serve/issues/28 - nix-serve = super.nix-serve.override { nix = super.nix_2_3; }; + nix-serve = super.nix-serve.override { nix = self.nix_2_3; }; # Avoid builds of mkShell derivations in CI. mkShell = super.lib.makeOverridable (args: (super.mkShell args).overrideAttrs (_: { |