diff options
author | Claudius "keldu" Holeksa <mail@keldu.de> | 2025-04-02 23:36:32 +0200 |
---|---|---|
committer | Claudius "keldu" Holeksa <mail@keldu.de> | 2025-04-02 23:36:32 +0200 |
commit | e7f5a1110bfafcd605b9330f9c7d3f5147298ed3 (patch) | |
tree | 7825d5b93a1d7c8d1b9eba871bf4513fcc0e88cf /.nix/derivation.nix | |
parent | 98c91326f5952e951247b42299a2a56515603025 (diff) |
Reworking the current structure
Diffstat (limited to '.nix/derivation.nix')
-rw-r--r-- | .nix/derivation.nix | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/.nix/derivation.nix b/.nix/derivation.nix index 7dc7c7f..7ce23e2 100644 --- a/.nix/derivation.nix +++ b/.nix/derivation.nix @@ -7,7 +7,7 @@ stdenv.mkDerivation { pname = "kel-lbm"; - version = "0.0.0"; + version = "0.0.1"; src = ./..; nativeBuildInputs = [ @@ -23,6 +23,10 @@ stdenv.mkDerivation { ]; doCheck = true; + checkPhase = '' + scons test + ./bin/tests + ''; outputs = [ "out" "dev" ]; } |