mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 19:21:04 +00:00
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:
parent
f322e8f25c
commit
d7c6aaa127
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue