* Read policy files from /etc/PolicyKit/policy instead of

$out/share/PolicyKit/policy - otherwise we can't let PolicyKit find
  the policies of other packages (such as HAL).

svn path=/nixpkgs/trunk/; revision=17438
This commit is contained in:
Eelco Dolstra 2009-09-26 10:29:57 +00:00
parent c07380798c
commit 7638cc573e

View File

@ -14,6 +14,12 @@ stdenv.mkDerivation rec {
configureFlags = "--localstatedir=/var --sysconfdir=/etc";
installFlags = "localstatedir=$(TMPDIR)/var sysconfdir=$(out)/etc"; # keep `make install' happy
# Read policy files from /etc/PolicyKit/policy instead of
# /usr/share/PolicyKit/policy. Using PACKAGE_DATA_DIR is hacky, but
# it works because it's only used in the C code for finding the
# policy directory.
NIX_CFLAGS_COMPILE = "-DPACKAGE_DATA_DIR=\"/etc\"";
meta = {
homepage = http://www.freedesktop.org/wiki/Software/PolicyKit;