generic unpacker for some firmware which needs to be uploaded

svn path=/nixpkgs/trunk/; revision=5166
This commit is contained in:
Armijn Hemel 2006-04-18 11:01:59 +00:00
parent 8292f5c856
commit ba18de03b9

View File

@ -0,0 +1,9 @@
{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "bluez-firmware-1.1";
src = fetchurl {
url = http://bluez.sf.net/download/bluez-firmware-1.1.tar.gz;
md5 = "2f1c2d939108c865dd07bae3e819c573";
};
}