nixpkgs/pkgs/development/libraries/gnome/libbonobo/default.nix
Eelco Dolstra e42507d182 * Move tarballs to catamaran so that we are no longer dependent on a
gazillion different servers.  Resurrected some 25 missing files.

svn path=/nixpkgs/trunk/; revision=2237
2005-02-15 14:44:19 +00:00

15 lines
498 B
Nix

{stdenv, fetchurl, pkgconfig, perl, ORBit2, libxml2, popt, yacc, flex}:
assert pkgconfig != null && perl != null && ORBit2 != null
&& libxml2 != null && popt != null && yacc != null && flex != null;
stdenv.mkDerivation {
name = "libbonobo-2.4.2";
src = fetchurl {
url = http://catamaran.labs.cs.uu.nl/dist/tarballs/libbonobo-2.4.2.tar.bz2;
md5 = "78200cc6ed588c93f0d29177a5f3e003";
};
buildInputs = [pkgconfig perl libxml2 yacc flex];
propagatedBuildInputs = [ORBit2 popt];
}