fix(tvix/glue): don't use builtins.currentSystem in test
This test will otherwise obviously fail on aarch64-linux, or anything not x86_64-linux, as it'll produce a different Derivation. Change-Id: Iedddcb6aeff05e49fc2e6da27f08111cdc9affec Reviewed-on: https://cl.tvl.fyi/c/depot/+/12677 Autosubmit: flokli <flokli@flokli.de> Reviewed-by: edef <edef@edef.eu> Tested-by: BuildkiteCI
This commit is contained in:
parent
84a82f6f41
commit
1f75fee0dd
1 changed files with 1 additions and 1 deletions
|
@ -4,7 +4,7 @@
|
|||
inherit (derivation {
|
||||
name = "test";
|
||||
builder = "/bin/sh";
|
||||
system = builtins.currentSystem;
|
||||
system = "x86_64-linux";
|
||||
}) drvPath;
|
||||
}))
|
||||
|
||||
|
|
Loading…
Reference in a new issue