From 2ac145b3bb6d2de3887ab08e0cf26423b5e6c5ee Mon Sep 17 00:00:00 2001 From: "Claudius \"keldu\" Holeksa" Date: Wed, 25 Feb 2026 20:33:36 +0100 Subject: Changes to run, reworking meta reporting for easier estimation of runtime parameters --- examples/meta/.nix/derivation.nix | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 examples/meta/.nix/derivation.nix (limited to 'examples/meta/.nix/derivation.nix') diff --git a/examples/meta/.nix/derivation.nix b/examples/meta/.nix/derivation.nix new file mode 100644 index 0000000..26706e6 --- /dev/null +++ b/examples/meta/.nix/derivation.nix @@ -0,0 +1,33 @@ +{ lib +, stdenv +, scons +, clang-tools +, forstio +, pname +, version +, kel +}: + +stdenv.mkDerivation { + pname = pname + "-examples-" + "meta_2d"; + inherit version; + src = ./..; + + nativeBuildInputs = [ + scons + clang-tools + ]; + + buildInputs = [ + forstio.core + forstio.async + forstio.codec + forstio.codec-unit + forstio.codec-json + kel.lbm.core + ]; + + preferLocalBuild = true; + + outputs = [ "out" "dev" ]; +} -- cgit v1.2.3