diff options
| author | Claudius "keldu" Holeksa <mail@keldu.de> | 2026-07-13 15:04:22 +0200 |
|---|---|---|
| committer | Claudius "keldu" Holeksa <mail@keldu.de> | 2026-07-13 15:04:22 +0200 |
| commit | a707a1a35d370e4ffc7e808049fb76e8314d4ac1 (patch) | |
| tree | 167af2555a1523d2bfe77426f8f282de538c04bc /poc/triangle_stream/.nix | |
| parent | 5c9e64112e1f710e99790db4814eb2f0031dec34 (diff) | |
| download | libs-lbm-a707a1a35d370e4ffc7e808049fb76e8314d4ac1.tar.gz | |
poc work
Diffstat (limited to 'poc/triangle_stream/.nix')
| -rw-r--r-- | poc/triangle_stream/.nix/derivation.nix | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/poc/triangle_stream/.nix/derivation.nix b/poc/triangle_stream/.nix/derivation.nix new file mode 100644 index 0000000..c86fc0b --- /dev/null +++ b/poc/triangle_stream/.nix/derivation.nix @@ -0,0 +1,41 @@ +{ lib +, stdenv +, scons +, clang-tools +, forstio +, python3 +, pname +, version +, adaptive-cpp +, kel +}: + +stdenv.mkDerivation { + pname = pname + "-poc-" + "triangle_stream"; + 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" ]; +} |
