diff options
| author | Claudius "keldu" Holeksa <mail@keldu.de> | 2026-06-28 19:41:33 +0200 |
|---|---|---|
| committer | Claudius "keldu" Holeksa <mail@keldu.de> | 2026-06-28 19:41:33 +0200 |
| commit | 78e8a621beff8ccd410f2e2c0b6df7f3931b52eb (patch) | |
| tree | 080672eb1e183fff0ef628dfc3ae6628cb8d10f5 /examples/poiseulle_moving_particle_2d_psm_gpu/.nix | |
| parent | 3a27bca74e7645874e52f101d467aff8ff7d78f4 (diff) | |
| parent | 283ff837896c805bddf4962caaa54c26aa8bab1f (diff) | |
| download | libs-lbm-78e8a621beff8ccd410f2e2c0b6df7f3931b52eb.tar.gz | |
Merge branch 'dev'
Diffstat (limited to 'examples/poiseulle_moving_particle_2d_psm_gpu/.nix')
| -rw-r--r-- | examples/poiseulle_moving_particle_2d_psm_gpu/.nix/derivation.nix | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/examples/poiseulle_moving_particle_2d_psm_gpu/.nix/derivation.nix b/examples/poiseulle_moving_particle_2d_psm_gpu/.nix/derivation.nix new file mode 100644 index 0000000..d4c1b0f --- /dev/null +++ b/examples/poiseulle_moving_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-" + "poiseulle_moving_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" ]; +} |
