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:
Florian Klink 2024-10-21 11:57:04 +02:00 committed by clbot
parent 84a82f6f41
commit 1f75fee0dd

View file

@ -4,7 +4,7 @@
inherit (derivation {
name = "test";
builder = "/bin/sh";
system = builtins.currentSystem;
system = "x86_64-linux";
}) drvPath;
}))