summary refs log tree commit diff
path: root/pkgs/desktops/gnome/GConf.nix
blob: 74b646f6cc3449c3989f26ea3a454b1e742fd8eb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{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];
}