summaryrefslogtreecommitdiff
path: root/.nix
diff options
context:
space:
mode:
authorClaudius "keldu" Holeksa <mail@keldu.de>2025-11-05 13:38:04 +0100
committerClaudius "keldu" Holeksa <mail@keldu.de>2025-11-05 13:38:04 +0100
commitb9aacd9c2fdc61721c8ca3e1b40ebc92daa3772e (patch)
treebec510bca7b72b8fe63b7f8cec1fd78b7ff03bc2 /.nix
parentf5c40005f576b5a3416c2cda8c60e5f100810ddb (diff)
downloadlibs-lbm-b9aacd9c2fdc61721c8ca3e1b40ebc92daa3772e.tar.gz
Reworking structure
Diffstat (limited to '.nix')
-rw-r--r--.nix/derivation.nix35
1 files changed, 0 insertions, 35 deletions
diff --git a/.nix/derivation.nix b/.nix/derivation.nix
deleted file mode 100644
index 5d77b56..0000000
--- a/.nix/derivation.nix
+++ /dev/null
@@ -1,35 +0,0 @@
-{ lib
-, stdenv
-, scons
-, clang-tools
-, forstio
-}:
-
-stdenv.mkDerivation {
- pname = "kel-lbm";
- version = "0.0.2";
- src = ../lib;
-
- nativeBuildInputs = [
- scons
- clang-tools
- ];
-
- buildInputs = [
- forstio.core
- forstio.async
- forstio.codec
- forstio.codec-unit
- forstio.codec-json
- ];
-
- doCheck = true;
- checkPhase = ''
- scons test
- ./bin/tests
- '';
-
- preferLocalBuild = true;
-
- outputs = [ "out" "dev" ];
-}