* 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
+19
View File
@@ -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";
};
}