libgnome-2.32.1, drop esound dependency

svn path=/nixpkgs/trunk/; revision=29720
This commit is contained in:
Yury G. Kudryashov 2011-10-08 14:08:44 +00:00
parent 0ba5532d4b
commit a2d0e3b739
2 changed files with 13 additions and 11 deletions

View File

@ -112,9 +112,9 @@ pkgs.makeOverridable
}; };
libgnome = import ./platform/libgnome { libgnome = import ./platform/libgnome {
inherit (pkgs) stdenv fetchurl pkgconfig popt zlib; inherit (pkgs) stdenv fetchurl_gnome libcanberra pkgconfig popt zlib libtool;
inherit (pkgs.gtkLibs) glib; inherit (pkgs.gtkLibs) glib;
inherit intltool esound libbonobo GConf gnome_vfs ORBit2; inherit intltool libbonobo GConf gnome_vfs ORBit2;
}; };
libgnomeui = import ./platform/libgnomeui { libgnomeui = import ./platform/libgnomeui {

View File

@ -1,14 +1,16 @@
{ stdenv, fetchurl, pkgconfig, glib, popt, zlib { stdenv, fetchurl_gnome, pkgconfig, glib, popt, zlib, libcanberra
, intltool, esound, libbonobo, GConf, gnome_vfs, ORBit2}: , intltool, libbonobo, GConf, gnome_vfs, ORBit2, libtool}:
stdenv.mkDerivation { stdenv.mkDerivation rec {
name = "libgnome-2.28.0"; name = src.pkgname;
src = fetchurl { src = fetchurl_gnome {
url = mirror://gnome/sources/libgnome/2.28/libgnome-2.28.0.tar.bz2; project = "libgnome";
sha256 = "03hc1m88swxxw4cq491kz7495ksv762imamzbbvhci41bc40anwv"; major = "2"; minor = "32"; patchlevel = "1";
sha256 = "197pnq8y0knqjhm2fg4j6hbqqm3qfzfnd0irhwxpk1b4hqb3kimj";
}; };
buildInputs = [ pkgconfig popt zlib intltool GConf gnome_vfs ]; buildNativeInputs = [ pkgconfig ];
propagatedBuildInputs = [ glib libbonobo esound ]; buildInputs = [ popt zlib intltool GConf gnome_vfs libcanberra libtool ];
propagatedBuildInputs = [ glib libbonobo ];
} }