tuicam: init at 0.0.2 (#377825)
[NixPkgs.git] / pkgs / by-name / ob / obexfs / package.nix
blob2d3364cc2a8321018782b341bf1c4e786b697681
2   lib,
3   stdenv,
4   fetchurl,
5   pkg-config,
6   bluez,
7   fuse,
8   obexftp,
9 }:
11 stdenv.mkDerivation rec {
12   pname = "obexfs";
13   version = "0.12";
15   src = fetchurl {
16     url = "mirror://sourceforge/openobex/obexfs-${version}.tar.gz";
17     sha256 = "1g3krpygk6swa47vbmp9j9s8ahqqcl9ra8r25ybgzv2d9pmjm9kj";
18   };
20   nativeBuildInputs = [ pkg-config ];
21   buildInputs = [
22     fuse
23     obexftp
24     bluez
25   ];
27   meta = with lib; {
28     homepage = "http://dev.zuckschwerdt.org/openobex/wiki/ObexFs";
29     description = "Tool to mount OBEX-based devices (such as Bluetooth phones)";
30     platforms = platforms.linux;
31     license = licenses.lgpl2Plus;
32   };