nixpkgs/pkgs/development/tools/misc/eggdbus/default.nix
Eelco Dolstra 714555bb81 * 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
2009-08-13 07:55:11 +00:00

18 lines
446 B
Nix

{ 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";
};
}