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.
This commit is contained in:
Florian Klink 2024-07-17 10:58:35 +02:00
parent f322e8f25c
commit d7c6aaa127

View File

@ -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";