7bea3189aa
svn path=/nixpkgs/trunk/; revision=15839
14 lines
751 B
Nix
14 lines
751 B
Nix
{ stdenv, fetchurl, pkgconfig, glib, popt
|
|
, intltool, esound, audiofile, libbonobo, GConf, gnome_vfs, ORBit2}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "libgnome-2.26.0";
|
|
src = fetchurl {
|
|
url = mirror://gnome/platform/2.26/2.26.2/sources/libgnome-2.26.0.tar.bz2;
|
|
sha256 = "0673cf0in4p6935nfhs1zhyb2bdjdgwfx2xw41ylmlwzn5x2iw1f";
|
|
};
|
|
buildInputs = [ pkgconfig glib popt intltool esound audiofile libbonobo GConf gnome_vfs ];
|
|
CPPFLAGS = "-I${glib}/include/glib-2.0 -I${glib}/lib/glib-2.0/include -I${ORBit2}/include/orbit-2.0 -I${libbonobo}/include/libbonobo-2.0 -I${libbonobo}/include/bonobo-activation-2.0 -I${GConf}/include/gconf/2 -I${gnome_vfs}/include/gnome-vfs-2.0";
|
|
LIBS = "-lesd -lgconf-2 -lbonobo-activation -lbonobo-2 -lgnomevfs-2";
|
|
}
|