diff options
| author | Claudius "keldu" Holeksa <mail@keldu.de> | 2026-08-25 16:49:40 +0200 |
|---|---|---|
| committer | Claudius "keldu" Holeksa <mail@keldu.de> | 2026-08-25 16:49:40 +0200 |
| commit | 9a1ee9e0b348f75f5f4f8fb41ea901a0dea02f13 (patch) | |
| tree | eebcd9403ac04a0e99b2f57fbfc895b4344a356b /examples/throat_clog/.nix | |
| parent | 29ab0dd49362add54fae1791e1d0776157ee79b0 (diff) | |
| download | libs-lbm-9a1ee9e0b348f75f5f4f8fb41ea901a0dea02f13.tar.gz | |
Weird things are happening?
Diffstat (limited to 'examples/throat_clog/.nix')
| -rw-r--r-- | examples/throat_clog/.nix/derivation.nix | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/examples/throat_clog/.nix/derivation.nix b/examples/throat_clog/.nix/derivation.nix new file mode 100644 index 0000000..4dfce2a --- /dev/null +++ b/examples/throat_clog/.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-throat_clog_2d_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" ]; +} |
