* Added PolicyKit and eggdbus. There is a newer version of PolicyKit
(0.93), but it doesn't compile with the current glib. svn path=/nixpkgs/trunk/; revision=16704
This commit is contained in:
17
pkgs/development/tools/misc/eggdbus/default.nix
Normal file
17
pkgs/development/tools/misc/eggdbus/default.nix
Normal file
@@ -0,0 +1,17 @@
|
||||
{ stdenv, fetchurl, pkgconfig, glib, dbus, dbus_glib }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "eggdbus-0.5";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://hal.freedesktop.org/releases/${name}.tar.gz";
|
||||
sha256 = "0g1s9nzfyjyhnmv4hzll3izayh4c4pjy3i51ihwgkz3wmd1xaq9j";
|
||||
};
|
||||
|
||||
buildInputs = [ pkgconfig glib dbus.libs dbus_glib ];
|
||||
|
||||
meta = {
|
||||
homepage = http://hal.freedesktop.org/releases/;
|
||||
description = "D-Bus bindings for GObject";
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user