c1ae2bd62f
svn path=/nixpkgs/trunk/; revision=17519
14 lines
638 B
Nix
14 lines
638 B
Nix
{stdenv, fetchurl, pkgconfig, glib, intltool, gnome_vfs, libbonobo, ORBit2}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "gnome-vfs-monikers-2.15.3";
|
|
src = fetchurl {
|
|
url = mirror:/gnome/sources/gnome-vfs-monikers/2.15/gnome-vfs-monikers-2.15.3.tar.bz2;
|
|
sha256 = "0gpgk5vwhgqfhrd8pf1314kh7sv3jfqll2xbdbrs5s5sxy3v7b15"
|
|
};
|
|
buildInputs = [ pkgconfig glib intltool gnome_vfs libbonobo ];
|
|
CPPFLAGS = "-I${libbonobo}/include/libbonobo-2.0 -I${libbonobo}/include/bonobo-activation-2.0 "+
|
|
"-I${glib}/include/glib-2.0 -I${glib}/lib/glib-2.0/include -I${ORBit2}/include/orbit-2.0 "+
|
|
"-I${gnome_vfs}/include/gnome-vfs-2.0";
|
|
}
|