swaylock-effects: fix pkg-config of wayland-scanner

The split out of wayland-scanner from wayland into its own package:
https://github.com/NixOS/nixpkgs/commit/921bd99f8de553bd45be0ed298619589f2b7fee4
caused issues with pkg-config not finding wayland-scanner anymore.
This commit fixes this by adding pkg-config to depsBuildBuild as done
for other packages having the same issues like:
https://github.com/NixOS/nixpkgs/commit/ff498279120074a4d9fdbbb7d18f7cebe57a7c9a
This commit is contained in:
Funkeleinhorn
2024-09-02 11:27:53 +02:00
committed by Alyssa Ross
parent 3ced993e74
commit a33b796c02
@@ -30,6 +30,7 @@ stdenv.mkDerivation rec {
'';
strictDeps = true;
depsBuildBuild = [ pkg-config ];
nativeBuildInputs = [ meson ninja pkg-config scdoc wayland-scanner];
buildInputs = [ wayland wayland-protocols libxkbcommon cairo gdk-pixbuf pam ];