nixpkgs/pkgs/desktops/gnome/GConf.nix
Eelco Dolstra 3d98c0bf14 * Get rid of all those pointless little directories.
svn path=/nixpkgs/trunk/; revision=8107
2007-02-28 16:38:39 +00:00

14 lines
409 B
Nix

{input, 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 {
inherit (input) name src;
# Perl is not `supposed' to be required, but it is.
buildInputs = [pkgconfig perl glib gtk libxml2 popt];
propagatedBuildInputs = [ORBit2];
}