2021-01-17 01:17:16 -08:00
|
|
|
{ lib, stdenv, fetchurl, pkg-config, bluez, fuse, obexftp }:
|
2020-01-09 11:42:11 -08:00
|
|
|
|
2009-08-05 16:24:27 -07:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "obexfs-0.12";
|
2020-01-09 11:42:11 -08:00
|
|
|
|
2009-08-05 16:24:27 -07:00
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/openobex/${name}.tar.gz";
|
|
|
|
sha256 = "1g3krpygk6swa47vbmp9j9s8ahqqcl9ra8r25ybgzv2d9pmjm9kj";
|
|
|
|
};
|
|
|
|
|
2021-01-17 01:17:16 -08:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2020-01-09 11:42:11 -08:00
|
|
|
buildInputs = [ fuse obexftp bluez ];
|
2009-08-05 16:24:27 -07:00
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "http://dev.zuckschwerdt.org/openobex/wiki/ObexFs";
|
2009-08-05 16:24:27 -07:00
|
|
|
description = "A tool to mount OBEX-based devices (such as Bluetooth phones)";
|
2016-02-12 11:45:29 -08:00
|
|
|
platforms = platforms.linux;
|
|
|
|
license = licenses.lgpl2Plus;
|
2009-08-05 16:24:27 -07:00
|
|
|
};
|
|
|
|
}
|