From f07487ce8f0f3ebd5c4d1082a9521f09588fa34a Mon Sep 17 00:00:00 2001 From: Claudius Holeksa Date: Sat, 29 Apr 2023 18:44:59 +0200 Subject: Added io to new repo --- forstio/io/.nix/derivation.nix | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 forstio/io/.nix/derivation.nix (limited to 'forstio/io/.nix') diff --git a/forstio/io/.nix/derivation.nix b/forstio/io/.nix/derivation.nix new file mode 100644 index 0000000..0d213d3 --- /dev/null +++ b/forstio/io/.nix/derivation.nix @@ -0,0 +1,32 @@ +{ lib +, stdenvNoCC +, scons +, clang +, clang-tools +, version +, forstio +}: + +let + +in stdenvNoCC.mkDerivation { + pname = "forstio-io"; + inherit version; + + src = ./..; + + enableParallelBuilding = true; + + nativeBuildInputs = [ + scons + clang + clang-tools + ]; + + buildInputs = [ + forstio.core + forstio.async + ]; + + outputs = ["out" "dev"]; +} -- cgit v1.2.3