summary refs log tree commit diff
path: root/pkgs/desktops/gnome-3/platform/GConf.nix
blob: 637d619d022bcf41871bc4907ded9181650f9dc7 (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_gnome, glib, dbus_glib, pkgconfig, xz, libxml2, gtk, intltool }:

stdenv.mkDerivation rec {
  name = src.pkgname;

  src = fetchurl_gnome {
    project = "GConf";
    major = "3"; minor = "2"; patchlevel = "0"; extension = "xz";
    sha256 = "02vdm6slc2mdw0yfl6lh7qawqcb2k7sk6br21fdj1vfp55ap8wgk";
  };

  propagatedBuildInputs = [ glib dbus_glib libxml2 gtk ];
  buildNativeInputs = [ pkgconfig xz intltool ];

  configureFlags = "--disable-orbit";

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