policykit: remove the package obsoleted by polkit
Inspired by: https://github.com/NixOS/nixpkgs/commit/6ce3b9a8068d#commitcomment-15226586
This commit is contained in:
parent
b7658f3f8b
commit
4f08cb0de9
3 changed files with 0 additions and 38 deletions
|
@ -1,35 +0,0 @@
|
|||
{ stdenv, fetchurl, pkgconfig, glib, dbus, dbus_glib, expat, pam
|
||||
, intltool, gettext, libxslt, docbook_xsl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "policykit-0.9";
|
||||
|
||||
src = fetchurl {
|
||||
url = http://hal.freedesktop.org/releases/PolicyKit-0.9.tar.gz;
|
||||
sha256 = "1dw05s4xqj67i3c13knzl04l8jap0kywzpav6fidpmqrximpq37l";
|
||||
};
|
||||
|
||||
buildInputs =
|
||||
[ pkgconfig glib dbus_glib pam intltool gettext libxslt ];
|
||||
|
||||
propagatedBuildInputs = [ expat dbus.libs ];
|
||||
|
||||
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\"";
|
||||
|
||||
# Needed to build the manpages.
|
||||
XML_CATALOG_FILES = "${docbook_xsl}/xml/xsl/docbook/catalog.xml";
|
||||
|
||||
meta = {
|
||||
homepage = http://www.freedesktop.org/wiki/Software/PolicyKit;
|
||||
description = "A toolkit for defining and handling the policy that allows unprivileged processes to speak to privileged processes (obsolete)";
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
};
|
||||
}
|
|
@ -8091,8 +8091,6 @@ let
|
|||
|
||||
polkit_qt4 = callPackage ../development/libraries/polkit-qt-1 { };
|
||||
|
||||
policykit = callPackage ../development/libraries/policykit { };
|
||||
|
||||
poppler = callPackage ../development/libraries/poppler { lcms = lcms2; };
|
||||
|
||||
poppler_min = poppler.override { # TODO: maybe reduce even more
|
||||
|
|
|
@ -130,7 +130,6 @@ with import ./release-lib.nix { inherit supportedSystems; };
|
|||
perl = all;
|
||||
pkgconfig = all;
|
||||
pmccabe = linux;
|
||||
policykit = linux;
|
||||
portmap = linux;
|
||||
procps = linux;
|
||||
python = allBut cygwin;
|
||||
|
|
Loading…
Reference in a new issue