about summary refs log tree commit diff
path: root/pkgs/tools/security/polkit-gnome
diff options
context:
space:
mode:
authorYury G. Kudryashov <urkud.urkud@gmail.com>2011-08-18 12:52:50 +0000
committerYury G. Kudryashov <urkud.urkud@gmail.com>2011-08-18 12:52:50 +0000
commit0466e94091803a2b67dd710e0a6b6becf5074e7c (patch)
tree68875f3e09a09814edc12dfd63327928df918203 /pkgs/tools/security/polkit-gnome
parent0b669505c265c3d61a269d108a15e99989fb5c06 (diff)
Add polkit-kde-agent
Move pinentry and polkit-gnome to tools/security.

svn path=/nixpkgs/trunk/; revision=28656
Diffstat (limited to 'pkgs/tools/security/polkit-gnome')
-rw-r--r--pkgs/tools/security/polkit-gnome/default.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/tools/security/polkit-gnome/default.nix b/pkgs/tools/security/polkit-gnome/default.nix
new file mode 100644
index 0000000000000..9adab0fb0c27d
--- /dev/null
+++ b/pkgs/tools/security/polkit-gnome/default.nix
@@ -0,0 +1,22 @@
+{ stdenv, fetchurl, pkgconfig, gtk, polkit, dbus_glib, intltool }:
+stdenv.mkDerivation rec {
+
+  name = "polkit-gnome-${version}";
+  version = "0.96";
+
+  src = fetchurl {
+    url = http://hal.freedesktop.org/releases/polkit-gnome-0.96.tar.bz2;
+    sha256 = "14la7j3h1k1s88amkcv8rzq9wmhgzypvxpwaxwg2x2k55l1wi5hd";
+  };
+
+  buildInputs = [ pkgconfig gtk polkit dbus_glib intltool ];
+
+  configureFlags = [ "--disable-introspection" ];
+
+  meta = with stdenv.lib; {
+    homepage = http://hal.freedesktop.org/docs/PolicyKit/;
+    description = "A dbus session bus service that is used to bring up authentication dialogs";
+    license = licenses.gpl2;
+    maintainers = [ maintainers.phreedom ];
+  };
+}
\ No newline at end of file