summary refs log tree commit diff
path: root/pkgs/os-specific/linux/bluez
diff options
context:
space:
mode:
authorShea Levy <shea@shealevy.com>2011-12-03 22:23:57 +0000
committerShea Levy <shea@shealevy.com>2011-12-03 22:23:57 +0000
commit766396a57ba497cbf95aa53dfb84f7e6b825f35f (patch)
tree346430cefd588b45dca29502e53a6c0bd5f7a180 /pkgs/os-specific/linux/bluez
parent3de62cd12a7b2eedd195f2575ea0db37884b68b9 (diff)
downloadnixpkgs-766396a57ba497cbf95aa53dfb84f7e6b825f35f.tar
nixpkgs-766396a57ba497cbf95aa53dfb84f7e6b825f35f.tar.gz
nixpkgs-766396a57ba497cbf95aa53dfb84f7e6b825f35f.tar.bz2
nixpkgs-766396a57ba497cbf95aa53dfb84f7e6b825f35f.tar.lz
nixpkgs-766396a57ba497cbf95aa53dfb84f7e6b825f35f.tar.xz
nixpkgs-766396a57ba497cbf95aa53dfb84f7e6b825f35f.tar.zst
nixpkgs-766396a57ba497cbf95aa53dfb84f7e6b825f35f.zip
bluez: Wrap the test-input program
Apparently this is useful for bluetooth mice and other HID. Patch submitted by mornfall

svn path=/nixpkgs/trunk/; revision=30721
Diffstat (limited to 'pkgs/os-specific/linux/bluez')
-rw-r--r--pkgs/os-specific/linux/bluez/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/os-specific/linux/bluez/default.nix b/pkgs/os-specific/linux/bluez/default.nix
index 598ee26124f..81d15a0aa0c 100644
--- a/pkgs/os-specific/linux/bluez/default.nix
+++ b/pkgs/os-specific/linux/bluez/default.nix
@@ -35,7 +35,7 @@ stdenv.mkDerivation rec {
     depending on Python etc. */
   postInstall = ''
     pushd test
-    for a in simple-agent test-adapter test-device; do
+    for a in simple-agent test-adapter test-device test-input; do
       cp $a $out/bin/bluez-$a
       wrapProgram $out/bin/bluez-$a --prefix PYTHONPATH : ${pythonpath}
     done