1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

vips: propagate glib

The .pc file has gobject-2.0 in Requires
This commit is contained in:
Jan Tojnar 2020-03-04 01:28:09 +01:00
parent 1829f233dc
commit 658b4914f3
No known key found for this signature in database
GPG key ID: 7FAB2A15F7A607A4

View file

@ -72,6 +72,11 @@ stdenv.mkDerivation rec {
expat
] ++ stdenv.lib.optional stdenv.isDarwin ApplicationServices;
# Required by .pc file
propagatedBuildInputs = [
glib
];
autoreconfPhase = ''
NOCONFIGURE=1 ./autogen.sh
'';