* Added bluez, the Bluetooth stack for Linux.

svn path=/nixpkgs/trunk/; revision=16594
This commit is contained in:
Eelco Dolstra 2009-08-05 20:29:36 +00:00
parent 2ae0060bde
commit b7b4757ae4
2 changed files with 24 additions and 0 deletions

@ -0,0 +1,19 @@
{stdenv, fetchurl, pkgconfig, dbus, glib, libusb, alsaLib}:
assert stdenv.isLinux;
stdenv.mkDerivation rec {
name = "bluez-4.47";
src = fetchurl {
url = "mirror://kernel/linux/bluetooth/${name}.tar.gz";
sha256 = "0xiv26q1cgddby90pvc7f36xh6ky73c2w8gfmc4wgc1nd3dbf2w3";
};
buildInputs = [pkgconfig dbus.libs glib libusb alsaLib];
meta = {
homepage = http://www.bluez.org/;
description = "Bluetooth support for Linux";
};
}

@ -4646,6 +4646,11 @@ let
inherit kernel;
});
bluez = import ../os-specific/linux/bluez {
inherit fetchurl stdenv pkgconfig dbus libusb alsaLib;
inherit (gtkLibs) glib;
};
bridge_utils = import ../os-specific/linux/bridge_utils {
inherit fetchurl stdenv autoconf automake;
};