mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
Add polkit-kde-agent
Move pinentry and polkit-gnome to tools/security. svn path=/nixpkgs/trunk/; revision=28656
This commit is contained in:
parent
0b669505c2
commit
0466e94091
@ -26,7 +26,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
buildNativeInputs = [ pkgconfig ];
|
||||
|
||||
meta = {
|
||||
meta = {
|
||||
description = "GnuPG's interface to passphrase input";
|
||||
|
||||
longDescription = ''
|
16
pkgs/tools/security/polkit-kde-agent/default.nix
Normal file
16
pkgs/tools/security/polkit-kde-agent/default.nix
Normal file
@ -0,0 +1,16 @@
|
||||
{ stdenv, fetchurl, kdelibs, polkit_qt_1, gettext }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "polkit-kde-agent-1-0.99.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://kde/stable/apps/KDE4.x/admin/${name}.tar.bz2";
|
||||
sha256 = "0rxlq6x0vhvha8i6w109zpzzacp4imins55v4p4fq7a3k0kgywg3";
|
||||
};
|
||||
|
||||
buildInputs = [ kdelibs polkit_qt_1 ];
|
||||
|
||||
buildNativeInputs = [ gettext ];
|
||||
|
||||
patchPhase = "sed -e s/KDE4_AUTOSTART/AUTOSTART/ -i CMakeLists.txt";
|
||||
}
|
@ -1142,7 +1142,7 @@ let
|
||||
|
||||
philter = callPackage ../tools/networking/philter { };
|
||||
|
||||
pinentry = callPackage ../tools/misc/pinentry {
|
||||
pinentry = callPackage ../tools/security/pinentry {
|
||||
inherit (gnome) glib gtk;
|
||||
};
|
||||
|
||||
@ -1160,7 +1160,9 @@ let
|
||||
|
||||
polipo = callPackage ../servers/polipo { };
|
||||
|
||||
polkit_gnome = callPackage ../tools/misc/polkit-gnome { };
|
||||
polkit_gnome = callPackage ../tools/security/polkit-gnome { };
|
||||
|
||||
polkit_kde_agent = newScope pkgs.kde4 ../tools/security/polkit-kde-agent { };
|
||||
|
||||
povray = callPackage ../tools/graphics/povray { };
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user