2018-02-24 18:23:58 -08:00
|
|
|
{ stdenv, fetchurl, pkgconfig, glib, dbus, dbus-glib }:
|
2009-08-13 00:55:11 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2010-05-15 02:55:08 -07:00
|
|
|
name = "eggdbus-0.6";
|
2018-11-08 11:31:31 -08:00
|
|
|
|
2009-08-13 00:55:11 -07:00
|
|
|
src = fetchurl {
|
2018-06-28 11:43:35 -07:00
|
|
|
url = "https://hal.freedesktop.org/releases/${name}.tar.gz";
|
2010-05-15 02:55:08 -07:00
|
|
|
sha256 = "118hj63ac65zlg71kydv4607qcg1qpdlql4kvhnwnnhar421jnq4";
|
2009-08-13 00:55:11 -07:00
|
|
|
};
|
2018-11-08 11:31:31 -08:00
|
|
|
|
2017-09-05 14:26:13 -07:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2018-02-24 18:23:58 -08:00
|
|
|
buildInputs = [ glib dbus dbus-glib ];
|
2009-08-13 00:55:11 -07:00
|
|
|
|
2018-11-08 11:31:31 -08:00
|
|
|
meta = with stdenv.lib; {
|
2017-08-02 14:50:51 -07:00
|
|
|
homepage = https://hal.freedesktop.org/releases/;
|
2009-08-13 00:55:11 -07:00
|
|
|
description = "D-Bus bindings for GObject";
|
2018-11-08 11:31:31 -08:00
|
|
|
platforms = platforms.linux;
|
|
|
|
license = licenses.lgpl2;
|
2009-08-13 00:55:11 -07:00
|
|
|
};
|
|
|
|
}
|