mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
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:
parent
b0976dcdfc
commit
11b2added0
1 changed files with 2 additions and 2 deletions
|
@ -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 ];
|
||||
|
||||
|
|
Loading…
Reference in a new issue