96d41e393d
It's sad, but he's been inactive for the last five years. Keeping such people in meta.maintainers is counter-productive.
33 lines
995 B
Nix
33 lines
995 B
Nix
{ stdenv, fetchurl, polkit, gtk3, pkgconfig, intltool }:
|
|
|
|
let
|
|
version = "0.105";
|
|
|
|
in stdenv.mkDerivation rec {
|
|
name = "polkit-gnome-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnome/sources/polkit-gnome/${version}/${name}.tar.xz";
|
|
sha256 = "0sckmcbxyj6sbrnfc5p5lnw27ccghsid6v6wxq09mgxqcd4lk10p";
|
|
};
|
|
|
|
buildInputs = [ polkit gtk3 ];
|
|
nativeBuildInputs = [ pkgconfig intltool ];
|
|
|
|
configureFlags = [ "--disable-introspection" ];
|
|
|
|
# Desktop file from Debian
|
|
postInstall = ''
|
|
mkdir -p $out/etc/xdg/autostart
|
|
substituteAll ${./polkit-gnome-authentication-agent-1.desktop} $out/etc/xdg/autostart/polkit-gnome-authentication-agent-1.desktop
|
|
'';
|
|
|
|
meta = {
|
|
homepage = http://hal.freedesktop.org/docs/PolicyKit/;
|
|
description = "A dbus session bus service that is used to bring up authentication dialogs";
|
|
license = stdenv.lib.licenses.gpl2;
|
|
maintainers = with stdenv.lib.maintainers; [ phreedom ];
|
|
platforms = stdenv.lib.platforms.linux;
|
|
};
|
|
}
|