From a14896f9ed209dd3f9597722e5a5697bd7dbf531 Mon Sep 17 00:00:00 2001 From: "Claudius \"keldu\" Holeksa" Date: Mon, 4 Dec 2023 12:18:14 +0100 Subject: meta: Renamed folder containing source --- modules/core/.nix/derivation.nix | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 modules/core/.nix/derivation.nix (limited to 'modules/core/.nix') diff --git a/modules/core/.nix/derivation.nix b/modules/core/.nix/derivation.nix new file mode 100644 index 0000000..1618651 --- /dev/null +++ b/modules/core/.nix/derivation.nix @@ -0,0 +1,21 @@ +{ lib +, stdenv +, scons +, clang-tools +, version +}: + +stdenv.mkDerivation { + pname = "forstio-core"; + inherit version; + src = ./..; + + enableParallelBuilding = true; + + nativeBuildInputs = [ + scons + clang-tools + ]; + + outputs = ["out" "dev"]; +} -- cgit v1.2.3