summaryrefslogtreecommitdiff
path: root/examples/settling_spheres_2d_hlbm_gpu/.nix/derivation.nix
diff options
context:
space:
mode:
authorClaudius "keldu" Holeksa <mail@keldu.de>2026-06-02 18:15:13 +0200
committerClaudius "keldu" Holeksa <mail@keldu.de>2026-06-02 18:15:13 +0200
commiteb97ceef955fa1c5e3794c74fc9894fda1ce6f21 (patch)
treef508d08dcb9d61d716bedb0b17371ab9fac82e9e /examples/settling_spheres_2d_hlbm_gpu/.nix/derivation.nix
parentda25b3a1e7776a810d3bda5af3f363cf3e986cae (diff)
downloadlibs-lbm-eb97ceef955fa1c5e3794c74fc9894fda1ce6f21.tar.gz
Doing aabb computations
Diffstat (limited to 'examples/settling_spheres_2d_hlbm_gpu/.nix/derivation.nix')
-rw-r--r--examples/settling_spheres_2d_hlbm_gpu/.nix/derivation.nix41
1 files changed, 41 insertions, 0 deletions
diff --git a/examples/settling_spheres_2d_hlbm_gpu/.nix/derivation.nix b/examples/settling_spheres_2d_hlbm_gpu/.nix/derivation.nix
new file mode 100644
index 0000000..26b41f2
--- /dev/null
+++ b/examples/settling_spheres_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-" + "setting_spheres_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" ];
+}