2016-02-12 19:44:55 +00:00
|
|
|
{ stdenv, fetchurl, pkgconfig, bluez, libusb, cmake }:
|
2009-08-05 23:24:27 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2013-08-27 19:16:03 +00:00
|
|
|
name = "openobex-1.7.1";
|
2009-08-05 23:24:27 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2013-08-27 19:16:03 +00:00
|
|
|
url = "mirror://sourceforge/openobex/${name}-Source.tar.gz";
|
|
|
|
sha256 = "0mza0mrdrbcw4yix6qvl31kqy7bdkgxjycr0yx7yl089v5jlc9iv";
|
2009-08-05 23:24:27 +00:00
|
|
|
};
|
|
|
|
|
2016-02-12 19:44:55 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig cmake ];
|
|
|
|
buildInputs = [ bluez libusb ];
|
2009-08-05 23:24:27 +00:00
|
|
|
|
2016-02-12 19:44:55 +00:00
|
|
|
configureFlags = [ "--enable-apps" ];
|
2009-08-05 23:24:27 +00:00
|
|
|
|
2013-08-27 19:16:03 +00:00
|
|
|
patchPhase = ''
|
|
|
|
sed -i "s!/lib/udev!$out/lib/udev!" udev/CMakeLists.txt
|
2014-11-15 21:32:36 +00:00
|
|
|
sed -i "/if ( PKGCONFIG_UDEV_FOUND )/,/endif ( PKGCONFIG_UDEV_FOUND )/d" udev/CMakeLists.txt
|
2013-08-27 19:16:03 +00:00
|
|
|
'';
|
|
|
|
|
2016-02-12 19:44:55 +00:00
|
|
|
meta = with stdenv.lib; {
|
2009-08-05 23:24:27 +00:00
|
|
|
homepage = http://dev.zuckschwerdt.org/openobex/;
|
|
|
|
description = "An open source implementation of the Object Exchange (OBEX) protocol";
|
2016-02-12 19:44:55 +00:00
|
|
|
platforms = platforms.linux;
|
|
|
|
license = licenses.lgpl2Plus;
|
2009-08-05 23:24:27 +00:00
|
|
|
};
|
|
|
|
}
|