lol
1{ stdenv, fetchurl, pkgconfig, fuse, obexftp }:
2
3stdenv.mkDerivation rec {
4 name = "obexfs-0.12";
5
6 src = fetchurl {
7 url = "mirror://sourceforge/openobex/${name}.tar.gz";
8 sha256 = "1g3krpygk6swa47vbmp9j9s8ahqqcl9ra8r25ybgzv2d9pmjm9kj";
9 };
10
11 nativeBuildInputs = [ pkgconfig ];
12 buildInputs = [ fuse obexftp ];
13
14 meta = with stdenv.lib; {
15 homepage = http://dev.zuckschwerdt.org/openobex/wiki/ObexFs;
16 description = "A tool to mount OBEX-based devices (such as Bluetooth phones)";
17 platforms = platforms.linux;
18 license = licenses.lgpl2Plus;
19 };
20}