lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 15.09-beta 30 lines 943 B view raw
1{ stdenv, fetchurl, dbus, glib, pkgconfig, expat }: 2 3stdenv.mkDerivation rec { 4 name = "dbus-cplusplus-${version}"; 5 version = "0.9.0"; 6 7 src = fetchurl { 8 url = "mirror://sourceforge/dbus-cplusplus/dbus-c%2B%2B/0.9.0/libdbus-c%2B%2B-0.9.0.tar.gz"; 9 name = "${name}.tar.gz"; 10 sha256 = "0qafmy2i6dzx4n1dqp6pygyy6gjljnb7hwjcj2z11c1wgclsq4dw"; 11 }; 12 13 patches = [( fetchurl { 14 url = http://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-x86/dev-libs/dbus-c%2B%2B/files/dbus-c%2B%2B-0.9.0-gcc-4.7.patch; 15 name = "gcc-4.7.patch"; 16 sha256 = "0rwcz9pvc13b3yfr0lkifnfz0vb5q6dg240bzgf37ni4s8rpc72g"; 17 })]; 18 19 buildInputs = [ dbus glib pkgconfig expat ]; 20 21 configureFlags = "--disable-ecore"; 22 23 meta = with stdenv.lib; { 24 homepage = http://dbus-cplusplus.sourceforge.net; 25 description = "C++ API for D-BUS"; 26 license = licenses.gpl2Plus; 27 platforms = platforms.linux; 28 maintainers = [ maintainers.goibhniu ]; 29 }; 30}