summaryrefslogtreecommitdiff
path: root/tests/.nix
diff options
context:
space:
mode:
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"];
-}