nixpkgs/pkgs/os-specific/linux/firmware/b43-firmware-cutter/default.nix
Silvan Mosberger 57bccb3cb8 treewide: http -> https sources (#42676)
* treewide: http -> https sources

This updates the source urls of all top-level packages from http to
https where possible.

* buildtorrent: fix url and tab -> spaces
2018-06-28 20:43:35 +02:00

22 lines
560 B
Nix

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "b43-fwcutter-019";
src = fetchurl {
url = "https://bues.ch/b43/fwcutter/${name}.tar.bz2";
sha256 = "1ki1f5fy3yrw843r697f8mqqdz0pbsbqnvg4yzkhibpn1lqqbsnn";
};
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 = stdenv.lib.licenses.free;
platforms = stdenv.lib.platforms.linux;
};
}