nixpkgs/pkgs/tools/bluetooth/openobex/default.nix
Eelco Dolstra e0bdca07ff * Various OBEX-related tools.
svn path=/nixpkgs/trunk/; revision=16595
2009-08-05 23:24:27 +00:00

20 lines
501 B
Nix

{stdenv, fetchurl, pkgconfig, bluez, libusb}:
stdenv.mkDerivation rec {
name = "openobex-1.5";
src = fetchurl {
url = "mirror://kernel/linux/bluetooth/${name}.tar.gz";
sha256 = "0rayjci99ahhvs2d16as1qql3vrcizd0nhi8n3n4g6krf1sh80p6";
};
buildInputs = [pkgconfig bluez libusb];
configureFlags = "--enable-apps";
meta = {
homepage = http://dev.zuckschwerdt.org/openobex/;
description = "An open source implementation of the Object Exchange (OBEX) protocol";
};
}