diff options
| author | Claudius "keldu" Holeksa <mail@keldu.de> | 2026-05-08 12:32:54 +0200 |
|---|---|---|
| committer | Claudius "keldu" Holeksa <mail@keldu.de> | 2026-05-08 12:32:54 +0200 |
| commit | 22c8f0540533c2d77201e90cdcd3dc30524a89e4 (patch) | |
| tree | b99a9780d7fe327c093ae9d714dcbeccb150cdc5 /examples/poiseulle_particles_2d_fplbm_gpu/.nix/derivation.nix | |
| parent | 4f47c2c5631b6cadef3a74eca52bb40a3c5f75a9 (diff) | |
| parent | a8c333ce640b8ca2b1923f96ff13d4e6faf55c86 (diff) | |
| download | libs-lbm-22c8f0540533c2d77201e90cdcd3dc30524a89e4.tar.gz | |
Diffstat (limited to 'examples/poiseulle_particles_2d_fplbm_gpu/.nix/derivation.nix')
| -rw-r--r-- | examples/poiseulle_particles_2d_fplbm_gpu/.nix/derivation.nix | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/examples/poiseulle_particles_2d_fplbm_gpu/.nix/derivation.nix b/examples/poiseulle_particles_2d_fplbm_gpu/.nix/derivation.nix new file mode 100644 index 0000000..bf82f2b --- /dev/null +++ b/examples/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-" + "poiseulle_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" ]; +} |
