962276dd49
svn path=/nixpkgs/branches/x-updates/; revision=22651
23 lines
599 B
Nix
23 lines
599 B
Nix
{ stdenv, fetchurl, pkgconfig, expat, gettext, libiconv, dbus, glib }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "dbus-glib-0.86";
|
|
|
|
src = fetchurl {
|
|
url = "${meta.homepage}/releases/dbus-glib/${name}.tar.gz";
|
|
sha256 = "1p0bm5p8g8h0mimhj0d58dqdrhfipvcwv95l6hf69z4gygksclak";
|
|
};
|
|
|
|
buildInputs = [ pkgconfig expat gettext libiconv ];
|
|
|
|
propagatedBuildInputs = [ dbus.libs glib ];
|
|
|
|
passthru = { inherit dbus glib; };
|
|
|
|
meta = {
|
|
homepage = http://dbus.freedesktop.org;
|
|
license = "AFL-2.1 or GPL-2";
|
|
description = "GLib bindings for D-Bus lightweight IPC mechanism";
|
|
};
|
|
}
|