diff options
Diffstat (limited to 'flake.nix')
| -rw-r--r-- | flake.nix | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -58,12 +58,19 @@ in { fortify = callPackage ./test { inherit system self; }; - fpkg = callPackage ./cmd/fpkg/test { inherit system self; }; race = callPackage ./test { inherit system self; withRace = true; }; + sandbox = callPackage ./test/sandbox { inherit self; }; + sandbox-race = callPackage ./test/sandbox { + inherit self; + withRace = true; + }; + + fpkg = callPackage ./cmd/fpkg/test { inherit system self; }; + formatting = runCommandLocal "check-formatting" { nativeBuildInputs = [ nixfmt-rfc-style ]; } '' cd ${./.} |
