From 158e9706b2ecf9d421d9a57064fd093eb57007f4 Mon Sep 17 00:00:00 2001 From: Claudius Holeksa Date: Sun, 23 Apr 2023 23:48:11 +0200 Subject: c++: Added async tree --- forstio/async/.nix/derivation.nix | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 forstio/async/.nix/derivation.nix (limited to 'forstio/async/.nix') diff --git a/forstio/async/.nix/derivation.nix b/forstio/async/.nix/derivation.nix new file mode 100644 index 0000000..8ceac08 --- /dev/null +++ b/forstio/async/.nix/derivation.nix @@ -0,0 +1,31 @@ +{ lib +, stdenvNoCC +, scons +, clang +, clang-tools +, version +, forstio +}: + +let + +in stdenvNoCC.mkDerivation { + pname = "forstio-async"; + inherit version; + + src = ./..; + + enableParallelBuilding = true; + + nativeBuildInputs = [ + scons + clang + clang-tools + ]; + + buildInputs = [ + forstio.core + ]; + + outputs = ["out" "dev"]; +} -- cgit v1.2.3