diff options
| author | Claudius "keldu" Holeksa <mail@keldu.de> | 2025-12-20 19:31:56 +0100 |
|---|---|---|
| committer | Claudius "keldu" Holeksa <mail@keldu.de> | 2025-12-20 19:31:56 +0100 |
| commit | 3077dce642f110a3e010d154a9687310ab71de43 (patch) | |
| tree | cb347943ec31fe49b1ba530cc3cbc634f95767da /examples/poiseulle_3d_gpu/.nix/derivation.nix | |
| parent | eadbd325ed69abf148351e52c0a270ab32597169 (diff) | |
| download | libs-lbm-3077dce642f110a3e010d154a9687310ab71de43.tar.gz | |
Working forcing out
Diffstat (limited to 'examples/poiseulle_3d_gpu/.nix/derivation.nix')
| -rw-r--r-- | examples/poiseulle_3d_gpu/.nix/derivation.nix | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/examples/poiseulle_3d_gpu/.nix/derivation.nix b/examples/poiseulle_3d_gpu/.nix/derivation.nix new file mode 100644 index 0000000..ee78fc8 --- /dev/null +++ b/examples/poiseulle_3d_gpu/.nix/derivation.nix @@ -0,0 +1,39 @@ +{ lib +, stdenv +, scons +, clang-tools +, forstio +, python3 +, pname +, version +, adaptive-cpp +, kel-lbm +}: + +stdenv.mkDerivation { + pname = pname + "-examples-" + "poiseulle_3d_gpu"; + inherit version; + src = ./..; + + nativeBuildInputs = [ + scons + clang-tools + python3 + ]; + + buildInputs = [ + forstio.core + forstio.async + forstio.codec + forstio.codec-unit + forstio.remote + forstio.codec-json + adaptive-cpp + kel-lbm.core +# kel-lbm.sycl + ]; + + preferLocalBuild = true; + + outputs = [ "out" "dev" ]; +} |
