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