biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / bluetooth / obexfs / default.nix
blob0f37a0363212c9ef21718e80456fc403e835e797
1 { lib, stdenv, fetchurl, pkg-config, bluez, fuse, obexftp }:
3 stdenv.mkDerivation rec {
4   pname = "obexfs";
5   version = "0.12";
7   src = fetchurl {
8     url = "mirror://sourceforge/openobex/obexfs-${version}.tar.gz";
9     sha256 = "1g3krpygk6swa47vbmp9j9s8ahqqcl9ra8r25ybgzv2d9pmjm9kj";
10   };
12   nativeBuildInputs = [ pkg-config ];
13   buildInputs = [ fuse obexftp bluez ];
15   meta = with lib; {
16     homepage = "http://dev.zuckschwerdt.org/openobex/wiki/ObexFs";
17     description = "Tool to mount OBEX-based devices (such as Bluetooth phones)";
18     platforms = platforms.linux;
19     license = licenses.lgpl2Plus;
20   };