Fix policyKit references

svn path=/nixpkgs/trunk/; revision=16726
This commit is contained in:
Michael Raskin 2009-08-16 08:52:18 +00:00
parent bd1b49e546
commit 06b4ca8e6c
2 changed files with 3 additions and 3 deletions

View file

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

View file

@ -1,5 +1,5 @@
{ stdenv, fetchurl, pkgconfig, dbus_glib, glib, gtk, ORBit2, libxml2
, expat, policyKit, intltool}:
, expat, policy_kit, 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 policyKit intltool ];
expat policy_kit intltool ];
}