nixpkgs/pkgs/development/libraries/gnome/libbonobo/default.nix
Eelco Dolstra 776554d9e1 * Fixed and/or updated some more components. The number of explicit
builders is dropping steadily.

svn path=/nixpkgs/trunk/; revision=900
2004-04-01 19:11:59 +00:00

15 lines
505 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 = ftp://ftp.gnome.org/pub/gnome/sources/libbonobo/2.4/libbonobo-2.4.2.tar.bz2;
md5 = "78200cc6ed588c93f0d29177a5f3e003";
};
buildInputs = [pkgconfig perl libxml2 yacc flex];
propagatedBuildInputs = [ORBit2 popt];
}