27 lines
801 B
Nix
27 lines
801 B
Nix
{ lib, stdenv, fetchurl, pkg-config, libusb-compat-0_1, glib, dbus-glib, bluez, openobex, dbus }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "obex-data-server-0.4.6";
|
|
|
|
src = fetchurl {
|
|
url = "http://tadas.dailyda.com/software/${name}.tar.gz";
|
|
sha256 = "0kq940wqs9j8qjnl58d6l3zhx0jaszci356xprx23l6nvdfld6dk";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
buildInputs = [ libusb-compat-0_1 glib dbus-glib bluez openobex dbus ];
|
|
|
|
patches = [ ./obex-data-server-0.4.6-build-fixes-1.patch ];
|
|
|
|
preConfigure = ''
|
|
addToSearchPath PKG_CONFIG_PATH ${openobex}/lib64/pkgconfig
|
|
export PKG_CONFIG_PATH="${dbus.dev}/lib/pkgconfig:$PKG_CONFIG_PATH"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "http://wiki.muiline.com/obex-data-server";
|
|
platforms = platforms.linux;
|
|
license = licenses.gpl2;
|
|
};
|
|
}
|