diff options
| author | Claudius "keldu" Holeksa <mail@keldu.de> | 2026-04-29 19:01:49 +0200 |
|---|---|---|
| committer | Claudius "keldu" Holeksa <mail@keldu.de> | 2026-05-05 20:47:42 +0200 |
| commit | 8ed93f1768c313288eb43afd8aa2f1671a6bc7d8 (patch) | |
| tree | c91b383e458d1a47a0cf0404f7a59d0c5dd6aacf /examples/poiseulle_particles_2d_fplbm_gpu/.nix/derivation.nix | |
| parent | 9a1ac04b4b797bbd92fb67b99eb949cd19c8b966 (diff) | |
| download | libs-lbm-8ed93f1768c313288eb43afd8aa2f1671a6bc7d8.tar.gz | |
preparing for forced new method
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" ]; +} |
