summary refs log tree commit diff
path: root/pkgs/tools/bluetooth/obexftp/default.nix
blob: c1531b1ce162a8a770ea70877ff4b14ea554f1d6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{stdenv, fetchurl, pkgconfig, openobex, bluez}:
   
stdenv.mkDerivation rec {
  name = "obexftp-0.23";
   
  src = fetchurl {
    url = "mirror://sourceforge/openobex/${name}.tar.bz2";
    sha256 = "0djv239b14p221xjxzza280w3pnnwzpw4ssd6mshz36ki3r4z9s4";
  };

  buildInputs = [pkgconfig bluez];

  propagatedBuildInputs = [openobex];

  meta = {
    homepage = http://dev.zuckschwerdt.org/openobex/wiki/ObexFtp;
    description = "A library and tool to access files on OBEX-based devices (such as Bluetooth phones)";
  };
}