* Added Blueman (a Bluetooth application).

* Added obex-data-server and python-notify, needed by Blueman.

svn path=/nixpkgs/trunk/; revision=22497
This commit is contained in:
Eelco Dolstra
2010-07-06 14:54:22 +00:00
parent 8213706eb9
commit 3f92e4d2c8
4 changed files with 83 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
{ stdenv, fetchurl, pkgconfig, libusb, glib, dbus_glib, bluez, openobex }:
stdenv.mkDerivation rec {
name = "obex-data-server-0.4.5";
src = fetchurl {
url = "http://tadas.dailyda.com/software/${name}.tar.gz";
sha256 = "0qy7mrwr3xfplcxlrq97hiiyda7r9jn24015y9azahi7q5xjfhg7";
};
buildInputs = [ pkgconfig libusb glib dbus_glib bluez openobex ];
meta = {
homepage = http://wiki.muiline.com/obex-data-server;
};
}