diff options
| author | Claudius "keldu" Holeksa <mail@keldu.de> | 2026-08-07 12:34:45 +0200 |
|---|---|---|
| committer | Claudius "keldu" Holeksa <mail@keldu.de> | 2026-08-07 12:34:45 +0200 |
| commit | 5d4192c73c72f29debe0f3b6e73889f0204ab74a (patch) | |
| tree | c3b0c1084e3e0642cb986522e6222239669d0f88 /examples/moving_poiseulle_particles_2d_psm_gpu/.nix | |
| parent | a5c654598544f2a33289664ba73a77343d301ce2 (diff) | |
| parent | 7d094fe719923db5eb6b30edcc4fa01c6ce2cc2e (diff) | |
| download | libs-lbm-5d4192c73c72f29debe0f3b6e73889f0204ab74a.tar.gz | |
Merge branch 'dev'
Diffstat (limited to 'examples/moving_poiseulle_particles_2d_psm_gpu/.nix')
| -rw-r--r-- | examples/moving_poiseulle_particles_2d_psm_gpu/.nix/derivation.nix | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/examples/moving_poiseulle_particles_2d_psm_gpu/.nix/derivation.nix b/examples/moving_poiseulle_particles_2d_psm_gpu/.nix/derivation.nix new file mode 100644 index 0000000..01e1f12 --- /dev/null +++ b/examples/moving_poiseulle_particles_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-" + "moving_poiseulle_particles_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" ]; +} |
