summaryrefslogtreecommitdiff
path: root/examples/moving_poiseulle_particles_2d_hlbm_gpu/.nix
diff options
context:
space:
mode:
authorClaudius "keldu" Holeksa <mail@keldu.de>2026-06-03 20:23:27 +0200
committerClaudius "keldu" Holeksa <mail@keldu.de>2026-06-03 20:23:27 +0200
commit3700a2bdc86a5c56a4051bc5262878e0858306e8 (patch)
treedad2bf9e89b1aeef18eaa7f71e543c90143c98a5 /examples/moving_poiseulle_particles_2d_hlbm_gpu/.nix
parent42338efc99190d4f3362ecbc326a740cb7bd0479 (diff)
downloadlibs-lbm-3700a2bdc86a5c56a4051bc5262878e0858306e8.tar.gz
Dangling
Diffstat (limited to 'examples/moving_poiseulle_particles_2d_hlbm_gpu/.nix')
-rw-r--r--examples/moving_poiseulle_particles_2d_hlbm_gpu/.nix/derivation.nix41
1 files changed, 41 insertions, 0 deletions
diff --git a/examples/moving_poiseulle_particles_2d_hlbm_gpu/.nix/derivation.nix b/examples/moving_poiseulle_particles_2d_hlbm_gpu/.nix/derivation.nix
new file mode 100644
index 0000000..efc1125
--- /dev/null
+++ b/examples/moving_poiseulle_particles_2d_hlbm_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_hlbm_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" ];
+}