fix(3p/overlays): Avoid builds of mkShell derivations in CI
Change-Id: I94a728e0041c7be30675f4344b5f8e49099d4cd3 Reviewed-on: https://cl.tvl.fyi/c/depot/+/4333 Tested-by: BuildkiteCI Autosubmit: tazjin <mail@tazj.in> Reviewed-by: sterni <sternenseemann@systemli.org>
This commit is contained in:
parent
e9bfa84aaf
commit
13f7bf06bb
1 changed files with 5 additions and 0 deletions
5
third_party/overlays/tvl.nix
vendored
5
third_party/overlays/tvl.nix
vendored
|
@ -59,4 +59,9 @@ self: super: {
|
||||||
# nix-serve does not work with nix 2.4
|
# nix-serve does not work with nix 2.4
|
||||||
# https://github.com/edolstra/nix-serve/issues/28
|
# 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 = super.nix_2_3; };
|
||||||
|
|
||||||
|
# Avoid builds of mkShell derivations in CI.
|
||||||
|
mkShell = super.lib.makeOverridable(args: (super.mkShell args) // {
|
||||||
|
meta.ci = false;
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue