mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
21 lines
587 B
Nix
21 lines
587 B
Nix
{stdenv, fetchurl, pkgconfig, openobex, bluez, cmake}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "obexftp-0.24";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/openobex/${name}-Source.tar.gz";
|
|
sha256 = "0szy7p3y75bd5h4af0j5kf0fpzx2w560fpy4kg3603mz11b9c1xr";
|
|
};
|
|
|
|
buildInputs = [pkgconfig bluez cmake];
|
|
|
|
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)";
|
|
platforms = stdenv.lib.platforms.linux;
|
|
};
|
|
}
|