summary refs log tree commit diff
path: root/pkgs/applications/misc
diff options
context:
space:
mode:
authorArmijn Hemel <armijn@gpl-violations.org>2006-04-18 10:53:45 +0000
committerArmijn Hemel <armijn@gpl-violations.org>2006-04-18 10:53:45 +0000
commit8292f5c856f6b4ab93de108b71eeca8ec17179c6 (patch)
tree790a28319841e77d8afb6198c00dac5c474ca514 /pkgs/applications/misc
parentf002f9d30a4468026197eab80d870974e49f929d (diff)
downloadnixlib-8292f5c856f6b4ab93de108b71eeca8ec17179c6.tar
nixlib-8292f5c856f6b4ab93de108b71eeca8ec17179c6.tar.gz
nixlib-8292f5c856f6b4ab93de108b71eeca8ec17179c6.tar.bz2
nixlib-8292f5c856f6b4ab93de108b71eeca8ec17179c6.tar.lz
nixlib-8292f5c856f6b4ab93de108b71eeca8ec17179c6.tar.xz
nixlib-8292f5c856f6b4ab93de108b71eeca8ec17179c6.tar.zst
nixlib-8292f5c856f6b4ab93de108b71eeca8ec17179c6.zip
add bluetooth utilities (without libusb and openobex support though)
svn path=/nixpkgs/trunk/; revision=5165
Diffstat (limited to 'pkgs/applications/misc')
-rw-r--r--pkgs/applications/misc/bluez-utils/default.nix10
1 files changed, 10 insertions, 0 deletions
diff --git a/pkgs/applications/misc/bluez-utils/default.nix b/pkgs/applications/misc/bluez-utils/default.nix
new file mode 100644
index 000000000000..7cf88851fc3c
--- /dev/null
+++ b/pkgs/applications/misc/bluez-utils/default.nix
@@ -0,0 +1,10 @@
+{stdenv, fetchurl, bluezLibs}:
+
+stdenv.mkDerivation {
+  name = "bluez-utils-2.25";
+  src = fetchurl {
+    url = http://bluez.sf.net/download/bluez-utils-2.25.tar.gz;
+    md5 = "ae3729ab5592be06ed01b973d4b3e9fe";
+  };
+  buildInputs = [bluezLibs];
+}