diff options
Diffstat (limited to '.nix')
| -rw-r--r-- | .nix/derivation.nix | 35 |
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" ]; -} |
