aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/libraries/polkit
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2013-11-09 16:29:18 +0100
committerVladimír Čunát <vcunat@gmail.com>2013-11-09 16:29:18 +0100
commit8d14c7baa6b293b3b48741b203400116ed9882ab (patch)
tree96a4dffa07593420db661783f34ebbfb9ebc3222 /pkgs/development/libraries/polkit
parent35a3d07c4f1cc2772e35decb348a71651056c057 (diff)
polkit: major update 0.105 -> 0.112
- It now uses JavaScript for configuration (only), so I had to "convert" config for NetworkManager. - I tested suspend/restart/(un)mount on KDE/Xfce, Phreedom tested NetworkManager config conversion.
Diffstat (limited to 'pkgs/development/libraries/polkit')
-rw-r--r--pkgs/development/libraries/polkit/default.nix54
1 files changed, 30 insertions, 24 deletions
diff --git a/pkgs/development/libraries/polkit/default.nix b/pkgs/development/libraries/polkit/default.nix
index 9d1f0d18c1ad..821e66ea0b30 100644
--- a/pkgs/development/libraries/polkit/default.nix
+++ b/pkgs/development/libraries/polkit/default.nix
@@ -1,48 +1,59 @@
-{ stdenv, fetchurl, pkgconfig, glib, expat, pam, intltool, gettext
-, gobjectIntrospection
+{ stdenv, fetchurl, pkgconfig, glib, expat, pam, intltool, spidermonkey
+, gobjectIntrospection, libxslt, docbook_xsl
, useSystemd ? stdenv.isLinux, systemd }:
let
system = "/var/run/current-system/sw";
+ setuid = "/var/setuid-wrappers"; #TODO: from <nixos> config.security.wrapperDir;
foolVars = {
- LOCALSTATE = "/var";
SYSCONF = "/etc";
- LIB = "${system}/lib";
- DATA = "${system}/share";
+ DATA = "${system}/share"; # to find share/polkit-1/actions of other apps at runtime
};
in
stdenv.mkDerivation rec {
- name = "polkit-0.105";
+ name = "polkit-0.112";
src = fetchurl {
url = "http://www.freedesktop.org/software/polkit/releases/${name}.tar.gz";
- sha256 = "1pz1hn4z0f1wk4f7w8q1g6ygwan1b6kxmfad3b7gql27pb47rp4g";
+ sha256 = "1xkary7yirdcjdva950nqyhmsz48qhrdsr78zciahj27p8yg95fn";
};
buildInputs =
- [ pkgconfig glib expat pam intltool gobjectIntrospection ]
+ [ pkgconfig glib expat pam intltool spidermonkey gobjectIntrospection ]
+ ++ [ libxslt docbook_xsl ] # man pages
++ stdenv.lib.optional useSystemd systemd;
- configureFlags = "--libexecdir=$(out)/libexec/polkit-1";
-
# Ugly hack to overwrite hardcoded directories
# TODO: investigate a proper patch which will be accepted upstream
+ # After update it's good to check the sources via:
+ # grep '\<PACKAGE_' '--include=*.[ch]' -R
CFLAGS = stdenv.lib.concatStringsSep " "
( map (var: ''-DPACKAGE_${var}_DIR=\""${builtins.getAttr var foolVars}"\"'')
(builtins.attrNames foolVars) );
- preBuild =
- ''
- # ‘libpolkit-agent-1.so’ should call the setuid wrapper on
- # NixOS. Hard-coding the path is kinda ugly. Maybe we can just
- # call through $PATH, but that might have security implications.
- substituteInPlace src/polkitagent/polkitagentsession.c \
- --replace PACKAGE_LIBEXEC_DIR '"/var/setuid-wrappers"'
- '';
+ preConfigure = ''
+ patchShebangs .
+ '' + stdenv.lib.optionalString useSystemd /* bogus chroot detection */ ''
+ sed '/libsystemd-login autoconfigured, but system does not appear to use systemd/s/.*/:/' -i configure
+ ''
+ # ‘libpolkit-agent-1.so’ should call the setuid wrapper on
+ # NixOS. Hard-coding the path is kinda ugly. Maybe we can just
+ # call through $PATH, but that might have security implications.
+ + ''
+ substituteInPlace src/polkitagent/polkitagentsession.c \
+ --replace 'PACKAGE_PREFIX "/lib/polkit-1/' '"${setuid}/'
+ '';
+
+ configureFlags = [
+ #"--libexecdir=$(out)/libexec/polkit-1" # this and localstatedir are ignored by configure
+ "--with-systemdsystemunitdir=$(out)/etc/systemd/system"
+ "--with-polkitd-user=polkituser" #TODO? <nixos> config.ids.uids.polkituser
+ "--with-os-type=NixOS" # not recognized but prevents impurities on non-NixOS
+ ];
makeFlags =
''
@@ -50,12 +61,7 @@ stdenv.mkDerivation rec {
INTROSPECTION_TYPELIBDIR=$(out)lib/girepository-1.0
'';
- postInstall =
- ''
- # Allow some files with paranoid permissions to be stripped in
- # the fixup phase.
- chmod a+rX -R $out
- '';
+ #doCheck = true; # some /bin/bash problem that isn't auto-solved by patchShebangs
meta = with stdenv.lib; {
homepage = http://www.freedesktop.org/wiki/Software/polkit;