summaryrefslogtreecommitdiff
path: root/poc/triangle_stream/.nix/derivation.nix
diff options
context:
space:
mode:
authorClaudius "keldu" Holeksa <mail@keldu.de>2026-07-13 20:28:53 +0200
committerClaudius "keldu" Holeksa <mail@keldu.de>2026-07-13 20:28:53 +0200
commit6c66e5309dbfdcabb852871eade7e21438375742 (patch)
treeb1f9a2aa183de57074737a6c55c86afee0ffd53a /poc/triangle_stream/.nix/derivation.nix
parent803a5da1eff80d52ec3db2634dfd916c7de8a3a1 (diff)
parent0dcc910d33832e2c5c29a6317467f85accf77aac (diff)
downloadlibs-lbm-6c66e5309dbfdcabb852871eade7e21438375742.tar.gz
Merge branch 'dev'
Diffstat (limited to 'poc/triangle_stream/.nix/derivation.nix')
-rw-r--r--poc/triangle_stream/.nix/derivation.nix41
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" ];
+}