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 { 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 (pkgs.gtkLibs) glib gtk;
inherit intltool ORBit2; inherit intltool ORBit2;
}; };

View File

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