forked from mirrors/nixpkgs
libgnome: fix build by adding missing libogg
This commit is contained in:
parent
16b07cfc4f
commit
9c1a803019
|
@ -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 ];
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue