2021-01-17 09:17:16 +00:00
|
|
|
{ lib, stdenv, fetchurl, pkg-config, libusb-compat-0_1, glib, dbus-glib, bluez, openobex, dbus }:
|
2018-07-17 20:11:16 +00:00
|
|
|
|
2010-07-06 14:54:22 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2021-08-12 19:47:47 +00:00
|
|
|
pname = "obex-data-server";
|
|
|
|
version = "0.4.6";
|
2018-07-17 20:11:16 +00:00
|
|
|
|
2010-07-06 14:54:22 +00:00
|
|
|
src = fetchurl {
|
2021-08-12 19:47:47 +00:00
|
|
|
url = "http://tadas.dailyda.com/software/obex-data-server-${version}.tar.gz";
|
2011-05-04 14:09:44 +00:00
|
|
|
sha256 = "0kq940wqs9j8qjnl58d6l3zhx0jaszci356xprx23l6nvdfld6dk";
|
2010-07-06 14:54:22 +00:00
|
|
|
};
|
|
|
|
|
2023-03-03 21:56:39 +00:00
|
|
|
strictDeps = true;
|
|
|
|
nativeBuildInputs = [
|
|
|
|
pkg-config
|
|
|
|
dbus-glib # required for dbus-binding-tool
|
|
|
|
];
|
2020-04-28 03:29:39 +00:00
|
|
|
buildInputs = [ libusb-compat-0_1 glib dbus-glib bluez openobex dbus ];
|
2014-02-19 12:07:20 +00:00
|
|
|
|
|
|
|
patches = [ ./obex-data-server-0.4.6-build-fixes-1.patch ];
|
|
|
|
|
|
|
|
preConfigure = ''
|
|
|
|
addToSearchPath PKG_CONFIG_PATH ${openobex}/lib64/pkgconfig
|
2018-07-17 20:11:16 +00:00
|
|
|
export PKG_CONFIG_PATH="${dbus.dev}/lib/pkgconfig:$PKG_CONFIG_PATH"
|
2014-02-19 12:07:20 +00:00
|
|
|
'';
|
2010-07-06 14:54:22 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "http://wiki.muiline.com/obex-data-server";
|
2018-11-14 22:26:22 +00:00
|
|
|
platforms = platforms.linux;
|
2024-04-26 11:35:31 +00:00
|
|
|
license = licenses.gpl2Plus;
|
2010-07-06 14:54:22 +00:00
|
|
|
};
|
|
|
|
}
|