summaryrefslogtreecommitdiff
path: root/examples/poiseulle_particles_2d_fplbm_gpu/.nix/derivation.nix
diff options
context:
space:
mode:
authorClaudius "keldu" Holeksa <mail@keldu.de>2026-05-08 12:32:54 +0200
committerClaudius "keldu" Holeksa <mail@keldu.de>2026-05-08 12:32:54 +0200
commit22c8f0540533c2d77201e90cdcd3dc30524a89e4 (patch)
treeb99a9780d7fe327c093ae9d714dcbeccb150cdc5 /examples/poiseulle_particles_2d_fplbm_gpu/.nix/derivation.nix
parent4f47c2c5631b6cadef3a74eca52bb40a3c5f75a9 (diff)
parenta8c333ce640b8ca2b1923f96ff13d4e6faf55c86 (diff)
downloadlibs-lbm-22c8f0540533c2d77201e90cdcd3dc30524a89e4.tar.gz
Merge branch 'dev'HEADmaster
Diffstat (limited to 'examples/poiseulle_particles_2d_fplbm_gpu/.nix/derivation.nix')
-rw-r--r--examples/poiseulle_particles_2d_fplbm_gpu/.nix/derivation.nix41
1 files changed, 41 insertions, 0 deletions
diff --git a/examples/poiseulle_particles_2d_fplbm_gpu/.nix/derivation.nix b/examples/poiseulle_particles_2d_fplbm_gpu/.nix/derivation.nix
new file mode 100644
index 0000000..bf82f2b
--- /dev/null
+++ b/examples/poiseulle_particles_2d_fplbm_gpu/.nix/derivation.nix
@@ -0,0 +1,41 @@
+{ lib
+, stdenv
+, scons
+, clang-tools
+, forstio
+, python3
+, pname
+, version
+, adaptive-cpp
+, kel
+}:
+
+stdenv.mkDerivation {
+ pname = pname + "-examples-" + "poiseulle_2d_fplbm_gpu";
+ inherit version;
+ src = ./..;
+
+ nativeBuildInputs = [
+ scons
+ clang-tools
+ python3
+ ];
+
+ buildInputs = [
+ forstio.core
+ forstio.async
+ forstio.codec
+ forstio.codec-unit
+ forstio.io
+ forstio.remote
+ forstio.remote-filesystem
+ forstio.codec-json
+ adaptive-cpp
+ kel.lbm.core
+ kel.lbm.sycl
+ ];
+
+ preferLocalBuild = true;
+
+ outputs = [ "out" "dev" ];
+}