libgnome: fix build by adding missing libogg

This commit is contained in:
Peter Simons 2014-06-20 18:40:14 +02:00
parent 16b07cfc4f
commit 9c1a803019

View File

@ -1,5 +1,6 @@
{ stdenv, fetchurlGnome, pkgconfig, glib, popt, zlib, libcanberra
, intltool, libbonobo, GConf, gnome_vfs, ORBit2, libtool}:
, intltool, libbonobo, GConf, gnome_vfs, ORBit2, libtool, libogg
}:
stdenv.mkDerivation rec {
name = src.pkgname;
@ -13,6 +14,6 @@ stdenv.mkDerivation rec {
patches = [ ./new-glib.patch ];
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ popt zlib intltool GConf gnome_vfs libcanberra libtool ];
buildInputs = [ popt zlib intltool GConf gnome_vfs libcanberra libtool libogg ];
propagatedBuildInputs = [ glib libbonobo ];
}