pythonPackages.notify: pkgs.pkgconfig -> pkgs.pkg-config

Fix building with `config.allowAliases = false;`.
This commit is contained in:
Samuel Gräfenstein 2021-03-16 19:30:51 +01:00
parent 6b6d2abfa0
commit 3096979f78
No known key found for this signature in database
GPG key ID: EF76A063F15C63C8

View file

@ -27,7 +27,7 @@ stdenv.mkDerivation {
configure
'';
nativeBuildInputs = [ pkgs.pkgconfig ];
nativeBuildInputs = [ pkgs.pkg-config ];
buildInputs = [ python pygobject2 pygtk pkgs.libnotify pkgs.glib pkgs.gtk2 pkgs.dbus-glib ];
postInstall = "cd $out/lib/python*/site-packages && ln -s gtk-*/pynotify .";