nixpkgs/pkgs/os-specific/linux/firmware/b43-firmware-cutter/default.nix
2014-05-06 18:43:01 +02:00

22 lines
511 B
Nix

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "b43-fwcutter-018";
src = fetchurl {
url = "http://bues.ch/b43/fwcutter/${name}.tar.bz2";
sha256 = "13v34pa0y1jf4hkhsh3zagyb7s8b8ymplffaayscwsd3s7f6kc2p";
};
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";
};
}