nixpkgs/pkgs/development/libraries/gnome/GConf/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

17 lines
559 B
Nix

{stdenv, fetchurl, pkgconfig, perl, glib, gtk, libxml2, ORBit2, popt}:
assert pkgconfig != null && perl != null
&& glib != null && gtk != null
&& libxml2 != null && ORBit2 != null && popt != null;
stdenv.mkDerivation {
name = "GConf-2.4.0.1";
src = fetchurl {
url = http://ftp.gnome.org/pub/GNOME/desktop/2.4/2.4.1/sources/GConf-2.4.0.1.tar.bz2;
md5 = "2f7548d0bad24d7c4beba54d0ec98a20";
};
# Perl is not `supposed' to be required, but it is.
buildInputs = [pkgconfig perl glib gtk libxml2 popt];
propagatedBuildInputs = [ORBit2];
}