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/window/.nix/derivation.nix | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 modules/window/.nix/derivation.nix (limited to 'modules/window/.nix') diff --git a/modules/window/.nix/derivation.nix b/modules/window/.nix/derivation.nix new file mode 100644 index 0000000..67a682c --- /dev/null +++ b/modules/window/.nix/derivation.nix @@ -0,0 +1,34 @@ +{ lib +, stdenv +, scons +, clang-tools +, version +, forstio +, xorg +}: + +let + +in stdenv.mkDerivation { + pname = "forstio-window"; + inherit version; + src = ./..; + + enableParallelBuilding = true; + + nativeBuildInputs = [ + scons + clang-tools + ]; + + buildInputs = [ + forstio.core + forstio.async + forstio.io + forstio.codec + xorg.libX11 + xorg.libxcb + ]; + + outputs = ["out" "dev"]; +} -- cgit v1.2.3