summary refs log tree commit diff
diff options
context:
space:
mode:
authorMichael Weiss <dev.primeos@gmail.com>2022-01-29 12:46:14 +0100
committerGitHub <noreply@github.com>2022-01-29 12:46:14 +0100
commit5cf5cad0da6244da30be1b6da2ff3d44b6f3ebe5 (patch)
treeab234ce73711658b75ff1447a3bb8bcd05d77610
parente3264bbf018dac6f55307d03407d480ca0f11016 (diff)
parentc9a5fc4be71e3ce866080d5438bcb25af7e3d648 (diff)
downloadnixpkgs-5cf5cad0da6244da30be1b6da2ff3d44b6f3ebe5.tar
nixpkgs-5cf5cad0da6244da30be1b6da2ff3d44b6f3ebe5.tar.gz
nixpkgs-5cf5cad0da6244da30be1b6da2ff3d44b6f3ebe5.tar.bz2
nixpkgs-5cf5cad0da6244da30be1b6da2ff3d44b6f3ebe5.tar.lz
nixpkgs-5cf5cad0da6244da30be1b6da2ff3d44b6f3ebe5.tar.xz
nixpkgs-5cf5cad0da6244da30be1b6da2ff3d44b6f3ebe5.tar.zst
nixpkgs-5cf5cad0da6244da30be1b6da2ff3d44b6f3ebe5.zip
Merge pull request #156823 from NickCao/wlroots-cross
wlroots_0_15: move glslang to nativeBuildInputs
-rw-r--r--pkgs/development/libraries/wlroots/0.15.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/libraries/wlroots/0.15.nix b/pkgs/development/libraries/wlroots/0.15.nix
index 7b7ff1816d7..dda5a06e442 100644
--- a/pkgs/development/libraries/wlroots/0.15.nix
+++ b/pkgs/development/libraries/wlroots/0.15.nix
@@ -24,12 +24,12 @@ stdenv.mkDerivation rec {
 
   depsBuildBuild = [ pkg-config ];
 
-  nativeBuildInputs = [ meson ninja pkg-config wayland-scanner ];
+  nativeBuildInputs = [ meson ninja pkg-config wayland-scanner glslang ];
 
   buildInputs = [
     libGL wayland wayland-protocols libinput libxkbcommon pixman
     xcbutilwm libX11 libcap xcbutilimage xcbutilerrors mesa
-    libpng ffmpeg xcbutilrenderutil seatd vulkan-loader glslang
+    libpng ffmpeg xcbutilrenderutil seatd vulkan-loader
   ]
     ++ lib.optional enableXWayland xwayland
   ;