summary refs log tree commit diff
path: root/pkgs/development/tools/misc/eggdbus/default.nix
blob: 7c7e5340434308bf773bc4d06b046ce1d31d8612 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ stdenv, fetchurl, pkgconfig, glib, dbus, dbus-glib }:

stdenv.mkDerivation rec {
  name = "eggdbus-0.6";

  src = fetchurl {
    url = "https://hal.freedesktop.org/releases/${name}.tar.gz";
    sha256 = "118hj63ac65zlg71kydv4607qcg1qpdlql4kvhnwnnhar421jnq4";
  };

  nativeBuildInputs = [ pkgconfig ];
  buildInputs = [ glib dbus dbus-glib ];

  meta = with stdenv.lib; {
    homepage = https://hal.freedesktop.org/releases/;
    description = "D-Bus bindings for GObject";
    platforms = platforms.linux;
    license = licenses.lgpl2;
  };
}