summary refs log tree commit diff
path: root/pkgs/development/libraries/dbus-glib/default.nix
blob: 2476ba4fabd5e76ce98b7d6c9d5f013b54cfef2a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
args: with args;

stdenv.mkDerivation rec {
  name = "dbus-glib-0.74";
  src = fetchurl {
    url = "${meta.homepage}/releases/dbus-glib/${name}.tar.gz";
    sha256 = "1qmbnd9xgg7vahlfywd8sfd9yqhx8jdyczz3cshfsd4qc76xhw78";
  };
  inherit dbus glib;
  buildInputs = [pkgconfig gettext glib expat];
  propagatedBuildInputs = [dbus.libs];

  meta = {
	  homepage = http://dbus.freedesktop.org;
	  license = "AFL-2.1 or GPL-2";
	  description = "GLib bindings for D-Bus lightweight IPC mechanism";
  };
}