2004-01-21 10:34:19 +01:00
|
|
|
{stdenv, fetchurl, pkgconfig, perl, ORBit2, libxml2, popt, yacc, flex}:
|
|
|
|
|
2004-03-29 12:25:25 +02:00
|
|
|
assert pkgconfig != null && perl != null && ORBit2 != null
|
|
|
|
&& libxml2 != null && popt != null && yacc != null && flex != null;
|
2004-01-21 10:34:19 +01:00
|
|
|
|
2004-03-29 19:23:01 +02:00
|
|
|
stdenv.mkDerivation {
|
2004-01-21 10:34:19 +01:00
|
|
|
name = "libbonobo-2.4.2";
|
|
|
|
src = fetchurl {
|
2005-02-15 15:44:19 +01:00
|
|
|
url = http://catamaran.labs.cs.uu.nl/dist/tarballs/libbonobo-2.4.2.tar.bz2;
|
2004-01-21 10:34:19 +01:00
|
|
|
md5 = "78200cc6ed588c93f0d29177a5f3e003";
|
|
|
|
};
|
2004-04-01 21:11:59 +02:00
|
|
|
buildInputs = [pkgconfig perl libxml2 yacc flex];
|
|
|
|
propagatedBuildInputs = [ORBit2 popt];
|
2004-01-21 10:34:19 +01:00
|
|
|
}
|