2015-04-05 06:22:12 +01:00
|
|
|
{ stdenv, fetchurl, flex, bison, pkgconfig, glib, dbus_glib, libxml2, popt
|
2011-10-09 08:11:28 +01:00
|
|
|
, intltool, ORBit2, procps }:
|
2009-09-30 06:27:34 +01:00
|
|
|
|
2011-10-09 08:11:28 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2015-04-05 06:22:12 +01:00
|
|
|
name = "libbonobo-${minVer}.1";
|
|
|
|
minVer = "2.32";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://gnome/sources/libbonobo/${minVer}/${name}.tar.bz2";
|
2011-10-09 08:11:28 +01:00
|
|
|
sha256 = "0swp4kk6x7hy1rvd1f9jba31lvfc6qvafkvbpg9h0r34fzrd8q4i";
|
2009-09-30 06:27:34 +01:00
|
|
|
};
|
2011-10-09 08:11:28 +01:00
|
|
|
|
2016-08-29 01:30:01 +01:00
|
|
|
outputs = [ "out" "dev" ];
|
2016-04-27 02:04:48 +01:00
|
|
|
|
2013-04-14 13:06:10 +01:00
|
|
|
preConfigure = # still using stuff deprecated in new glib versions
|
|
|
|
"sed 's/-DG_DISABLE_DEPRECATED//g' -i configure activation-server/Makefile.in";
|
|
|
|
|
2012-12-28 18:20:09 +00:00
|
|
|
nativeBuildInputs = [ flex bison pkgconfig intltool procps ];
|
2011-10-09 08:11:28 +01:00
|
|
|
buildInputs = [ libxml2 ];
|
2009-11-03 21:48:09 +00:00
|
|
|
propagatedBuildInputs = [ popt glib ORBit2 ];
|
2009-09-30 06:27:34 +01:00
|
|
|
}
|