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