From b6af8caffec91db14dfe3c1e095fd1fc84ecfd9e Mon Sep 17 00:00:00 2001 From: Ophestra Date: Sun, 23 Feb 2025 18:48:01 +0900 Subject: nix: clean up directory structure Tests for fpkg is going to be in ./cmd/fpkg, so this central tests directory is no longer necessary. Signed-off-by: Ophestra --- flake.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'flake.nix') diff --git a/flake.nix b/flake.nix index ac37474d..fcef274a 100644 --- a/flake.nix +++ b/flake.nix @@ -57,6 +57,12 @@ ; in { + fortify = callPackage ./test { inherit system self; }; + race = callPackage ./test { + inherit system self; + withRace = true; + }; + formatting = runCommandLocal "check-formatting" { nativeBuildInputs = [ nixfmt-rfc-style ]; } '' cd ${./.} @@ -85,12 +91,6 @@ touch $out ''; - - fortify = callPackage ./tests/fortify { inherit system self; }; - race = callPackage ./tests/fortify { - inherit system self; - withRace = true; - }; } ); -- cgit v1.3.1