diff options
author | Claudius "keldu" Holeksa <mail@keldu.de> | 2023-12-04 12:18:14 +0100 |
---|---|---|
committer | Claudius "keldu" Holeksa <mail@keldu.de> | 2023-12-04 12:18:14 +0100 |
commit | a14896f9ed209dd3f9597722e5a5697bd7dbf531 (patch) | |
tree | 089ca5cbbd206d1921f8f6b53292f5bc1902ca5c /modules/window-opengl/.nix | |
parent | 84ecdcbca9e55b1f57fbb832e12ff4fdbb86e7c9 (diff) |
meta: Renamed folder containing source
Diffstat (limited to 'modules/window-opengl/.nix')
-rw-r--r-- | modules/window-opengl/.nix/derivation.nix | 37 |
1 files changed, 37 insertions, 0 deletions
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"]; +} |