* Added obexd.

svn path=/nixpkgs/trunk/; revision=17497
This commit is contained in:
Eelco Dolstra
2009-09-29 12:54:08 +00:00
parent 8177f0f042
commit fc95cc78f8
2 changed files with 21 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
{ stdenv, fetchurl, pkgconfig, glib, dbus, openobex, bluez }:
stdenv.mkDerivation rec {
name = "obexd-0.18";
src = fetchurl {
url = "mirror://kernel/linux/bluetooth/${name}.tar.gz";
sha256 = "0a3jpkgg8skiqmy2ksfffmwysji4dnd4h9fc46nj0wcn8n9vvfkd";
};
buildInputs = [ pkgconfig glib dbus.libs openobex bluez ];
meta = {
homepage = http://www.bluez.org/;
};
}