Commit d7c6aaa1 authored by Florian Klink's avatar Florian Klink
Browse files

wlr-randr: fix cross compilation

Before, the build process wasn't able to find `pkg-config` to discover
`wayland-scanner` in `$PATH`, which is a nativeBuildInput.
parent f322e8f2
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -22,6 +22,9 @@ stdenv.mkDerivation rec {
  strictDeps = true;
  nativeBuildInputs = [ meson ninja pkg-config wayland-scanner ];
  buildInputs = [ wayland ];
  depsBuildBuild = [
    pkg-config
  ];

  meta = with lib; {
    description = "Xrandr clone for wlroots compositors";