lol
at 15.09-beta 20 lines 587 B view raw
1{stdenv, fetchurl, pkgconfig, openobex, bluez, cmake}: 2 3stdenv.mkDerivation rec { 4 name = "obexftp-0.24"; 5 6 src = fetchurl { 7 url = "mirror://sourceforge/openobex/${name}-Source.tar.gz"; 8 sha256 = "0szy7p3y75bd5h4af0j5kf0fpzx2w560fpy4kg3603mz11b9c1xr"; 9 }; 10 11 buildInputs = [pkgconfig bluez cmake]; 12 13 propagatedBuildInputs = [openobex]; 14 15 meta = { 16 homepage = http://dev.zuckschwerdt.org/openobex/wiki/ObexFtp; 17 description = "A library and tool to access files on OBEX-based devices (such as Bluetooth phones)"; 18 platforms = stdenv.lib.platforms.linux; 19 }; 20}