From eeb01452fe46fcb5efdc9c34b660305262097ca4 Mon Sep 17 00:00:00 2001 From: "Claudius \"keldu\" Holeksa" Date: Wed, 10 Dec 2025 11:26:13 +0100 Subject: Dangling changes --- examples/poiseulle_2d_gpu/.nix/derivation.nix | 39 +++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 examples/poiseulle_2d_gpu/.nix/derivation.nix (limited to 'examples/poiseulle_2d_gpu/.nix/derivation.nix') diff --git a/examples/poiseulle_2d_gpu/.nix/derivation.nix b/examples/poiseulle_2d_gpu/.nix/derivation.nix new file mode 100644 index 0000000..7f5c2b0 --- /dev/null +++ b/examples/poiseulle_2d_gpu/.nix/derivation.nix @@ -0,0 +1,39 @@ +{ lib +, stdenv +, scons +, clang-tools +, forstio +, python3 +, pname +, version +, adaptive-cpp +, kel-lbm +}: + +stdenv.mkDerivation { + pname = pname + "-examples-" + "poiseulle_2d_gpu"; + inherit version; + src = ./..; + + nativeBuildInputs = [ + scons + clang-tools + python3 + ]; + + buildInputs = [ + forstio.core + forstio.async + forstio.codec + forstio.codec-unit + forstio.remote + forstio.codec-json + adaptive-cpp + kel-lbm.core +# kel-lbm.sycl + ]; + + preferLocalBuild = true; + + outputs = [ "out" "dev" ]; +} -- cgit v1.2.3