Commit a33b796c authored by Funkeleinhorn's avatar Funkeleinhorn Committed by Alyssa Ross
Browse files

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
parent 3ced993e
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -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 ];