3
0
Fork 0
forked from mirrors/nixpkgs

librsvg: move cairo dependency into propagatedBuildInputs

the pkgconfig description file of librsvg states cairo as a build requirement.
and with cairo being propagated, vlc now picks up librsvg as available.
This commit is contained in:
Jonas Hoersch 2013-09-15 17:55:33 +02:00 committed by Vladimír Čunát
parent b0976dcdfc
commit 11b2added0

View file

@ -13,10 +13,10 @@ stdenv.mkDerivation rec {
sha256 = "1hp6325gdkzx8yqn2d2r915ak3k6hfshjjh0sc54z3vr0i99688h";
};
buildInputs = [ libxml2 libgsf bzip2 libcroco pango cairo ]
buildInputs = [ libxml2 libgsf bzip2 libcroco pango ]
++ stdenv.lib.optional enableIntrospection [ gobjectIntrospection ];
propagatedBuildInputs = [ glib gdk_pixbuf gtk2 gtk3 ];
propagatedBuildInputs = [ glib gdk_pixbuf cairo gtk2 gtk3 ];
nativeBuildInputs = [ pkgconfig ];