diff options
| author | Claudius "keldu" Holeksa <mail@keldu.de> | 2026-03-23 17:33:24 +0100 |
|---|---|---|
| committer | Claudius "keldu" Holeksa <mail@keldu.de> | 2026-03-23 17:33:24 +0100 |
| commit | 889710232771ce78be5e815d5e12dc42a57ffcb0 (patch) | |
| tree | 79d7b84a7a5054a962db7f736b528d73a2d107f6 /examples/settling_cubes_2d_ibm/.nix | |
| parent | 15bb1ae31583b53b448bf8f6300384ddf0025668 (diff) | |
| parent | 571e79c4d0b72202186fd11314cf268723b1844d (diff) | |
| download | libs-lbm-889710232771ce78be5e815d5e12dc42a57ffcb0.tar.gz | |
Merge branch 'dev'
Diffstat (limited to 'examples/settling_cubes_2d_ibm/.nix')
| -rw-r--r-- | examples/settling_cubes_2d_ibm/.nix/derivation.nix | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/examples/settling_cubes_2d_ibm/.nix/derivation.nix b/examples/settling_cubes_2d_ibm/.nix/derivation.nix new file mode 100644 index 0000000..d7f138b --- /dev/null +++ b/examples/settling_cubes_2d_ibm/.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_cubes_2d_ibm_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" ]; +} |
