summaryrefslogtreecommitdiff
path: root/examples/particles/.nix/derivation.nix
diff options
context:
space:
mode:
Diffstat (limited to 'examples/particles/.nix/derivation.nix')
-rw-r--r--examples/particles/.nix/derivation.nix37
1 files changed, 0 insertions, 37 deletions
diff --git a/examples/particles/.nix/derivation.nix b/examples/particles/.nix/derivation.nix
deleted file mode 100644
index 227132f..0000000
--- a/examples/particles/.nix/derivation.nix
+++ /dev/null
@@ -1,37 +0,0 @@
-{ lib
-, stdenv
-, scons
-, clang-tools
-, forstio
-, python3
-, pname
-, version
-, kel-lbm
-, adaptive-cpp
-}:
-
-stdenv.mkDerivation {
- pname = pname + "-examples-" + "particles";
- inherit version;
- src = ./..;
-
- nativeBuildInputs = [
- scons
- clang-tools
- python3
- ];
-
- buildInputs = [
- forstio.core
- forstio.async
- forstio.codec
- forstio.codec-unit
- forstio.codec-json
- kel-lbm.core
- adaptive-cpp
- ];
-
- preferLocalBuild = true;
-
- outputs = [ "out" "dev" ];
-}