polkit-gnome: packaged

svn path=/nixpkgs/trunk/; revision=26527
This commit is contained in:
Evgeny Egorochkin 2011-03-26 18:18:39 +00:00
parent 27c14e39b7
commit 804bb9c8d1
2 changed files with 24 additions and 0 deletions

View File

@ -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 ];
};
}

View File

@ -1115,6 +1115,8 @@ let
pngnq = callPackage ../tools/graphics/pngnq { };
polkit_gnome = callPackage ../tools/misc/polkit-gnome { };
povray = callPackage ../tools/graphics/povray { };
ppl = callPackage ../development/libraries/ppl { };