80b0d89ff0
svn path=/nixpkgs/trunk/; revision=16651
25 lines
633 B
Nix
25 lines
633 B
Nix
{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];
|
|
|
|
configureFlags = "--localstatedir=/var";
|
|
|
|
# Work around `make install' trying to create /var/lib/bluetooth.
|
|
installFlags = "statedir=$(TMPDIR)/var/lib/bluetooth";
|
|
|
|
meta = {
|
|
homepage = http://www.bluez.org/;
|
|
description = "Bluetooth support for Linux";
|
|
};
|
|
}
|