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