diff options
| author | Claudius "keldu" Holeksa <mail@keldu.de> | 2026-08-19 16:36:14 +0200 |
|---|---|---|
| committer | Claudius "keldu" Holeksa <mail@keldu.de> | 2026-08-19 16:36:14 +0200 |
| commit | 5dade743e7c1e6b0b6001b4265bf792f0b05f93a (patch) | |
| tree | 36bdc75fd46251913f3a6eadd8e737144e24e7e4 /examples/stdkr_2d_bgk/.nix | |
| parent | eaa598784db491d37bdb1b9ff87d6e6bc9979476 (diff) | |
| download | libs-lbm-5dade743e7c1e6b0b6001b4265bf792f0b05f93a.tar.gz | |
Dangling
Diffstat (limited to 'examples/stdkr_2d_bgk/.nix')
| -rw-r--r-- | examples/stdkr_2d_bgk/.nix/derivation.nix | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/examples/stdkr_2d_bgk/.nix/derivation.nix b/examples/stdkr_2d_bgk/.nix/derivation.nix new file mode 100644 index 0000000..766e849 --- /dev/null +++ b/examples/stdkr_2d_bgk/.nix/derivation.nix @@ -0,0 +1,42 @@ +{ lib +, stdenv +, scons +, clang-tools +, forstio +, python3 +, pname +, version +, adaptive-cpp +, kel +}: + +let +in stdenv.mkDerivation { + pname = "${pname}-examples-stdkr_2d_gpu_bgk"; + 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" ]; +} |
