svn path=/nixpkgs/trunk/; revision=17465

This commit is contained in:
Eelco Dolstra 2009-09-28 11:39:43 +00:00
parent 9669ae336a
commit 9cd0893306
2 changed files with 3 additions and 4 deletions

View file

@ -36,10 +36,9 @@ rec {
};
GConf = import ./platform/GConf {
inherit (pkgs) stdenv fetchurl pkgconfig dbus_glib libxml2 expat;
inherit (pkgs) stdenv fetchurl pkgconfig dbus_glib libxml2 expat policykit;
inherit (pkgs.gtkLibs) glib gtk;
inherit intltool ORBit2;
policy_kit = pkgs.policy_kit_0_9;
};
libgnomecanvas = import ./platform/libgnomecanvas {

View file

@ -1,5 +1,5 @@
{ stdenv, fetchurl, pkgconfig, dbus_glib, glib, gtk, ORBit2, libxml2
, expat, policy_kit, intltool}:
, expat, policykit, intltool}:
stdenv.mkDerivation {
name = "GConf-2.26.2";
@ -8,5 +8,5 @@ stdenv.mkDerivation {
sha256 = "1vb7hjxddy54g4vch936621g66n0mhi3wkhm9lwqh449vdqg4yki";
};
buildInputs = [ pkgconfig glib gtk dbus_glib ORBit2 libxml2
expat policy_kit intltool ];
expat policykit intltool ];
}