lol
0
fork

Configure Feed

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

at 18.03-beta 19 lines 476 B view raw
1{ stdenv, fetchurl, pkgconfig, glib, dbus, openobex, bluez, libical }: 2 3stdenv.mkDerivation rec { 4 name = "obexd-0.48"; 5 6 src = fetchurl { 7 url = "mirror://kernel/linux/bluetooth/${name}.tar.bz2"; 8 sha256 = "1i20dnibvnq9lnkkhajr5xx3kxlwf9q5c4jm19kyb0q1klzgzlb8"; 9 }; 10 11 buildInputs = [ glib dbus openobex bluez libical ]; 12 13 nativeBuildInputs = [ pkgconfig ]; 14 15 meta = { 16 homepage = http://www.bluez.org/; 17 platforms = stdenv.lib.platforms.linux; 18 }; 19}