diff options
| author | Claudius "keldu" Holeksa <mail@keldu.de> | 2026-07-27 21:53:27 +0200 |
|---|---|---|
| committer | Claudius "keldu" Holeksa <mail@keldu.de> | 2026-07-27 21:53:27 +0200 |
| commit | a826f7d9d4bb48565036dd665cb4c6a54622010d (patch) | |
| tree | cd339b39b404fc2da389f9f8e67ec15cf2d293f8 /examples/moving_poiseulle_particles_2d_fplbm_gpu/.nix/derivation.nix | |
| parent | fb3a5f5bcba542974cf2f3f1f401ec717e662942 (diff) | |
| download | libs-lbm-a826f7d9d4bb48565036dd665cb4c6a54622010d.tar.gz | |
Dangling
Diffstat (limited to 'examples/moving_poiseulle_particles_2d_fplbm_gpu/.nix/derivation.nix')
| -rw-r--r-- | examples/moving_poiseulle_particles_2d_fplbm_gpu/.nix/derivation.nix | 41 |
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" ]; +} |
