diff options
| author | Claudius "keldu" Holeksa <mail@keldu.de> | 2025-12-10 11:26:13 +0100 |
|---|---|---|
| committer | Claudius "keldu" Holeksa <mail@keldu.de> | 2025-12-10 11:26:13 +0100 |
| commit | eeb01452fe46fcb5efdc9c34b660305262097ca4 (patch) | |
| tree | 804f2355ef8bc4c256b10f76006f752430a72975 /examples/poiseulle_2d_gpu/.nix/derivation.nix | |
| parent | 1d7c55abaa8a17905e5b523f1fdd5c0080b97b7b (diff) | |
| download | libs-lbm-eeb01452fe46fcb5efdc9c34b660305262097ca4.tar.gz | |
Dangling changes
Diffstat (limited to 'examples/poiseulle_2d_gpu/.nix/derivation.nix')
| -rw-r--r-- | examples/poiseulle_2d_gpu/.nix/derivation.nix | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/examples/poiseulle_2d_gpu/.nix/derivation.nix b/examples/poiseulle_2d_gpu/.nix/derivation.nix new file mode 100644 index 0000000..7f5c2b0 --- /dev/null +++ b/examples/poiseulle_2d_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_2d_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" ]; +} |
