summaryrefslogtreecommitdiff
path: root/tests/.nix
diff options
context:
space:
mode:
authorClaudius "keldu" Holeksa <mail@keldu.de>2024-01-17 12:27:34 +0100
committerClaudius "keldu" Holeksa <mail@keldu.de>2024-01-17 12:27:34 +0100
commit06167d6ecc3c0c87e0d582ec69c55011f3eb49f1 (patch)
tree2b6273d7207333d7f1bbf615b02db3c68be80d58 /tests/.nix
parent634f55ceed45197e743c2d1c3df0c97c6f8888ae (diff)
tests: Removing the tests dir since tests have been moved to the
individual modules
Diffstat (limited to 'tests/.nix')
-rw-r--r--tests/.nix/derivation.nix37
1 files changed, 0 insertions, 37 deletions
diff --git a/tests/.nix/derivation.nix b/tests/.nix/derivation.nix
deleted file mode 100644
index 1438fb3..0000000
--- a/tests/.nix/derivation.nix
+++ /dev/null
@@ -1,37 +0,0 @@
-{ lib
-, stdenv
-, scons
-, clang-tools
-, version
-, forstio
-, netcdf
-}:
-
-stdenv.mkDerivation {
- pname = "forstio-test-cases";
- inherit version;
- src = ./..;
-
- enableParallelBuilding = true;
-
- nativeBuildInputs = [
- scons
- clang-tools
- forstio.async
- forstio.codec
- forstio.codec-json
- forstio.codec-netcdf
- forstio.core
- forstio.io
- forstio.window
- netcdf
- ];
-
- doCheck = true;
- checkPhase = ''
- scons test
- ./bin/tests
- '';
-
- outputs = ["out" "dev"];
-}