forked from mirrors/nixpkgs
bluez-4.90
svn path=/nixpkgs/trunk/; revision=27371
This commit is contained in:
parent
a288b1b216
commit
b7519354cc
|
@ -1,5 +1,5 @@
|
|||
{ stdenv, fetchurl, pkgconfig, dbus, glib, libusb, alsaLib, python, makeWrapper
|
||||
, pythonDBus, pygobject }:
|
||||
, pythonDBus, pygobject, gst_all, readline, libsndfile }:
|
||||
|
||||
assert stdenv.isLinux;
|
||||
|
||||
|
@ -9,16 +9,17 @@ let
|
|||
in
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "bluez-4.69";
|
||||
name = "bluez-4.90";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://kernel/linux/bluetooth/${name}.tar.gz";
|
||||
sha256 = "1h4fp6l1sflc0l5vg90hzvgldlwv7rqc4cbn2z6axmxv969pmrhh";
|
||||
sha256 = "18wq75m45q00fvddzgfqy1d4368649r2jl3j4yvpijymalc4jra7";
|
||||
};
|
||||
|
||||
buildInputs = [ pkgconfig dbus.libs glib libusb alsaLib python makeWrapper ];
|
||||
buildInputs = [ pkgconfig dbus.libs glib libusb alsaLib python makeWrapper
|
||||
gst_all.gstreamer gst_all.gstPluginsBase readline libsndfile ];
|
||||
|
||||
configureFlags = "--localstatedir=/var";
|
||||
configureFlags = "--localstatedir=/var --enable-udevrules --enable-configrules --enable-cups";
|
||||
|
||||
# Work around `make install' trying to create /var/lib/bluetooth.
|
||||
installFlags = "statedir=$(TMPDIR)/var/lib/bluetooth";
|
||||
|
|
Loading…
Reference in a new issue