2021-01-23 04:26:19 -08:00
|
|
|
{ lib, stdenv, fetchurl, pkg-config, 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
|
|
|
|
2021-01-18 22:50:56 -08:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2018-02-24 18:23:58 -08:00
|
|
|
buildInputs = [ glib dbus dbus-glib ];
|
2009-08-13 00:55:11 -07:00
|
|
|
|
2021-01-23 04:26:19 -08:00
|
|
|
meta = with lib; {
|
2020-03-31 18:11: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
|
|
|
};
|
|
|
|
}
|