From e7f5a1110bfafcd605b9330f9c7d3f5147298ed3 Mon Sep 17 00:00:00 2001
From: "Claudius \"keldu\" Holeksa" <mail@keldu.de>
Date: Wed, 2 Apr 2025 23:36:32 +0200
Subject: Reworking the current structure

---
 .nix/derivation.nix | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

(limited to '.nix/derivation.nix')

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" ];
 }
-- 
cgit v1.2.3