fork
Configure Feed
Select the types of activity you want to include in your feed.
lol
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{ stdenv, fetchurl, pkgconfig, libusb, glib, dbus_glib, bluez, openobex, dbus_libs }:
2
3stdenv.mkDerivation rec {
4 name = "obex-data-server-0.4.6";
5
6 src = fetchurl {
7 url = "http://tadas.dailyda.com/software/${name}.tar.gz";
8 sha256 = "0kq940wqs9j8qjnl58d6l3zhx0jaszci356xprx23l6nvdfld6dk";
9 };
10
11 buildInputs = [ pkgconfig libusb glib dbus_glib bluez openobex dbus_libs ];
12
13 patches = [ ./obex-data-server-0.4.6-build-fixes-1.patch ];
14
15 preConfigure = ''
16 addToSearchPath PKG_CONFIG_PATH ${openobex}/lib64/pkgconfig
17 export PKG_CONFIG_PATH="${dbus_libs.dev}/lib/pkgconfig:$PKG_CONFIG_PATH"
18 '';
19
20 meta = {
21 homepage = http://wiki.muiline.com/obex-data-server;
22 platforms = stdenv.lib.platforms.linux;
23 };
24}