From ef0e7d1104077082663c3ce3374eb5778008f545 Mon Sep 17 00:00:00 2001 From: "Claudius \"keldu\" Holeksa" Date: Tue, 22 Sep 2026 17:24:22 +0200 Subject: Clog work --- examples/throat_clog_2d/.nix/derivation.nix | 42 +++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 examples/throat_clog_2d/.nix/derivation.nix (limited to 'examples/throat_clog_2d/.nix') diff --git a/examples/throat_clog_2d/.nix/derivation.nix b/examples/throat_clog_2d/.nix/derivation.nix new file mode 100644 index 0000000..4dfce2a --- /dev/null +++ b/examples/throat_clog_2d/.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" ]; +} -- cgit v1.3.1