add bluetooth utilities (without libusb and openobex support though)

svn path=/nixpkgs/trunk/; revision=5165
This commit is contained in:
Armijn Hemel 2006-04-18 10:53:45 +00:00
parent f002f9d30a
commit 8292f5c856

View file

@ -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];
}