summaryrefslogtreecommitdiff
path: root/examples/moving_poiseulle_particles_2d_fplbm_gpu/.nix
diff options
context:
space:
mode:
authorClaudius "keldu" Holeksa <mail@keldu.de>2026-07-27 21:54:03 +0200
committerClaudius "keldu" Holeksa <mail@keldu.de>2026-07-27 21:54:03 +0200
commitf8071e48dcafc4ecefcfdaece2feeebe4d7c8bf6 (patch)
treecd339b39b404fc2da389f9f8e67ec15cf2d293f8 /examples/moving_poiseulle_particles_2d_fplbm_gpu/.nix
parentb6f536a44152aa93c697fbeda49500f722c9bcd5 (diff)
parenta826f7d9d4bb48565036dd665cb4c6a54622010d (diff)
downloadlibs-lbm-f8071e48dcafc4ecefcfdaece2feeebe4d7c8bf6.tar.gz
Merge branch 'dev'
Diffstat (limited to 'examples/moving_poiseulle_particles_2d_fplbm_gpu/.nix')
-rw-r--r--examples/moving_poiseulle_particles_2d_fplbm_gpu/.nix/derivation.nix41
1 files changed, 41 insertions, 0 deletions
diff --git a/examples/moving_poiseulle_particles_2d_fplbm_gpu/.nix/derivation.nix b/examples/moving_poiseulle_particles_2d_fplbm_gpu/.nix/derivation.nix
new file mode 100644
index 0000000..672927c
--- /dev/null
+++ b/examples/moving_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-" + "moving_poiseulle_particles_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" ];
+}