* Added bluez, the Bluetooth stack for Linux.
svn path=/nixpkgs/trunk/; revision=16594
This commit is contained in:
parent
2ae0060bde
commit
b7b4757ae4
19
pkgs/os-specific/linux/bluez/default.nix
Normal file
19
pkgs/os-specific/linux/bluez/default.nix
Normal 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";
|
||||
};
|
||||
}
|
@ -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;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user