diff options
| author | Ophestra <cat@gensokyo.uk> | 2026-06-05 09:53:15 +0900 |
|---|---|---|
| committer | Ophestra <cat@gensokyo.uk> | 2026-06-06 13:14:09 +0900 |
| commit | 7eafc7b1e4b895d1986280e192aa8d493fff8d96 (patch) | |
| tree | 005e7664004cb9ee7ea9ecf7de02a3d4fed4a982 /test/sandbox/default.nix | |
| parent | 282462c2f0d4e057e0714013f3f370af41a3d3f6 (diff) | |
nix: update flake lock
Was unfortunately not able to implement vm test suite before this release. Hopefully the last nixos update we have to follow.
Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'test/sandbox/default.nix')
| -rw-r--r-- | test/sandbox/default.nix | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/sandbox/default.nix b/test/sandbox/default.nix index 5528fd9b..a0b8d13a 100644 --- a/test/sandbox/default.nix +++ b/test/sandbox/default.nix @@ -15,7 +15,9 @@ testers.nixosTest { environment.hakurei = lib.mkIf withRace rec { # race detector does not support static linking package = (pkgs.callPackage ../../package.nix { }).overrideAttrs (previousAttrs: { - GOFLAGS = previousAttrs.GOFLAGS ++ [ "-race" ]; + env = previousAttrs.env // { + GOFLAGS = previousAttrs.env.GOFLAGS + " -race"; + }; }); hsuPackage = options.environment.hakurei.hsuPackage.default.override { hakurei = package; }; }; |
