forked from mirrors/nixpkgs
add bluetooth utilities (without libusb and openobex support though)
svn path=/nixpkgs/trunk/; revision=5165
This commit is contained in:
parent
f002f9d30a
commit
8292f5c856
10
pkgs/applications/misc/bluez-utils/default.nix
Normal file
10
pkgs/applications/misc/bluez-utils/default.nix
Normal 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];
|
||||
}
|
Loading…
Reference in a new issue