93f1029b0f
closes #1707
20 lines
649 B
Nix
20 lines
649 B
Nix
{ stdenv, fetchurl, flex, bison, pkgconfig, glib, dbus_glib, libxml2, popt
|
|
, intltool, ORBit2, procps }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libbonobo-${minVer}.1";
|
|
minVer = "2.32";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnome/sources/libbonobo/${minVer}/${name}.tar.bz2";
|
|
sha256 = "0swp4kk6x7hy1rvd1f9jba31lvfc6qvafkvbpg9h0r34fzrd8q4i";
|
|
};
|
|
|
|
preConfigure = # still using stuff deprecated in new glib versions
|
|
"sed 's/-DG_DISABLE_DEPRECATED//g' -i configure activation-server/Makefile.in";
|
|
|
|
nativeBuildInputs = [ flex bison pkgconfig intltool procps ];
|
|
buildInputs = [ libxml2 ];
|
|
propagatedBuildInputs = [ popt glib ORBit2 ];
|
|
}
|