summary refs log tree commit diff
path: root/pkgs/development/libraries/GConf/3.x.nix
blob: 4f6d5a9a04ac8b25ac75e69d71dc1f98bd8b6f01 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ stdenv, fetchurl, glib, dbus_glib, pkgconfig, libxml2, gtk3, intltool, polkit }:

stdenv.mkDerivation {
  name = "GConf-3.2.3";

  src = fetchurl {
    url = mirror://gnome/sources/GConf/3.2/GConf-3.2.3.tar.xz;
    sha256 = "0jd1z9gb1b7mv4g07qm554va6idasf3swgrfqflypdh9s38mvdcy";
  };

  propagatedBuildInputs = [ glib dbus_glib ];
  buildInputs = [ polkit gtk3 libxml2 ];
  buildNativeInputs = [ pkgconfig intltool ];

  configureFlags = "--disable-orbit";

  meta = {
    homepage = http://projects.gnome.org/gconf/;
    description = "A system for storing application preferences";
    maintainers = [ stdenv.lib.maintainers.urkud ];
    inherit (gtk3.meta) platforms;
  };
}