mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 04:02:55 +03:00
Making bluez install some of its test tools. Mainly, the bluez-simple-agent,
that can do a pincode handshake with the user. svn path=/nixpkgs/trunk/; revision=27284
This commit is contained in:
parent
3c99107e82
commit
d1a44b3a8c
@ -1,6 +1,12 @@
|
|||||||
{ stdenv, fetchurl, pkgconfig, dbus, glib, libusb, alsaLib }:
|
{ stdenv, fetchurl, pkgconfig, dbus, glib, libusb, alsaLib, python, makeWrapper
|
||||||
|
, pythonDBus, pygobject }:
|
||||||
|
|
||||||
assert stdenv.isLinux;
|
assert stdenv.isLinux;
|
||||||
|
|
||||||
|
let
|
||||||
|
pythonpath = "${pythonDBus}/lib/${python.libPrefix}/site-packages:"
|
||||||
|
+ "${pygobject}/lib/${python.libPrefix}/site-packages";
|
||||||
|
in
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "bluez-4.69";
|
name = "bluez-4.69";
|
||||||
@ -10,13 +16,22 @@ stdenv.mkDerivation rec {
|
|||||||
sha256 = "1h4fp6l1sflc0l5vg90hzvgldlwv7rqc4cbn2z6axmxv969pmrhh";
|
sha256 = "1h4fp6l1sflc0l5vg90hzvgldlwv7rqc4cbn2z6axmxv969pmrhh";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ pkgconfig dbus.libs glib libusb alsaLib ];
|
buildInputs = [ pkgconfig dbus.libs glib libusb alsaLib python makeWrapper ];
|
||||||
|
|
||||||
configureFlags = "--localstatedir=/var";
|
configureFlags = "--localstatedir=/var";
|
||||||
|
|
||||||
# Work around `make install' trying to create /var/lib/bluetooth.
|
# Work around `make install' trying to create /var/lib/bluetooth.
|
||||||
installFlags = "statedir=$(TMPDIR)/var/lib/bluetooth";
|
installFlags = "statedir=$(TMPDIR)/var/lib/bluetooth";
|
||||||
|
|
||||||
|
postInstall = ''
|
||||||
|
pushd test
|
||||||
|
for a in simple-agent test-adapter test-device; do
|
||||||
|
cp $a $out/bin/bluez-$a
|
||||||
|
wrapProgram $out/bin/bluez-$a --prefix PYTHONPATH : ${pythonpath}
|
||||||
|
done
|
||||||
|
popd
|
||||||
|
'';
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
homepage = http://www.bluez.org/;
|
homepage = http://www.bluez.org/;
|
||||||
description = "Bluetooth support for Linux";
|
description = "Bluetooth support for Linux";
|
||||||
|
Loading…
Reference in New Issue
Block a user