summary refs log tree commit diff
path: root/pkgs/desktops/gnome-2/platform/GConf/default.nix
blob: 1b3af898f6eb438b4d7e25fae6701fabebc47959 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ stdenv, fetchurl, pkgconfig, dbus_glib, glib, ORBit2, libxml2
, policykit, intltool, dbus_libs }:

stdenv.mkDerivation {
  name = "GConf-2.26.2";
  
  src = fetchurl {
    url = mirror://gnome/platform/2.26/2.26.2/sources/GConf-2.26.2.tar.bz2;
    sha256 = "1vb7hjxddy54g4vch936621g66n0mhi3wkhm9lwqh449vdqg4yki";
  };

  buildInputs = [ pkgconfig ORBit2 dbus_libs dbus_glib libxml2 policykit intltool ];
  propagatedBuildInputs = [ glib ];
}