diff options
| author | Claudius "keldu" Holeksa <mail@keldu.de> | 2026-06-26 15:21:26 +0200 |
|---|---|---|
| committer | Claudius "keldu" Holeksa <mail@keldu.de> | 2026-06-26 15:21:26 +0200 |
| commit | e6e9cc9ce84539813e7e14fae5cdf3d4466fdeaf (patch) | |
| tree | 5b05f488cb8b9be62499cb31cdfc034169db16d7 /examples/stokes_drag_particle_2d_psm_gpu/.nix | |
| parent | 70fda0ecf925fb5010b2e23cbdbc4e2076715958 (diff) | |
| download | libs-lbm-e6e9cc9ce84539813e7e14fae5cdf3d4466fdeaf.tar.gz | |
Added runs and script
Diffstat (limited to 'examples/stokes_drag_particle_2d_psm_gpu/.nix')
| -rw-r--r-- | examples/stokes_drag_particle_2d_psm_gpu/.nix/derivation.nix | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/examples/stokes_drag_particle_2d_psm_gpu/.nix/derivation.nix b/examples/stokes_drag_particle_2d_psm_gpu/.nix/derivation.nix new file mode 100644 index 0000000..00e9c85 --- /dev/null +++ b/examples/stokes_drag_particle_2d_psm_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-" + "stokes_drag_particle_2d_psm_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" ]; +} |
