Add b43-firmware-cutter

This commit is contained in:
Shea Levy
2012-07-13 18:00:00 -04:00
parent ae67368e54
commit 9d387d616d
3 changed files with 42 additions and 0 deletions
@@ -0,0 +1,22 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "b43-fwcutter-015";
src = fetchurl {
url = "http://bues.ch/b43/fwcutter/${name}.tar.bz2";
sha256 = "1sznw1jrhyfbx0ilwzrj6mzlgc96fzjbx56j4ji8lsypyp8m6sjc";
};
patches = [ ./no-root-install.patch ];
makeFlags = [ "PREFIX=$(out)" ];
meta = {
description = "Firmware extractor for cards supported by the b43 kernel module";
homepage = http://wireless.kernel.org/en/users/Drivers/b43;
license = "free-non-copyleft";
maintainers = [ stdenv.lib.maintainers.shlevy ];
};
}