nixpkgs/pkgs/os-specific/linux/firmware/zd1211/default.nix
Alyssa Ross 839d828b9c
treewide: firmware: stdenv -> stdenvNoCC
None of these packages use a compiler, except for alsa-firmware, which
has the appropriate compiler in depsBuildBuild already.

Tested by building a NixOS system with hardware.enableAllFirmware = true.
2022-08-12 15:51:22 +00:00

31 lines
636 B
Nix

{ stdenvNoCC
, lib
, fetchurl
}:
stdenvNoCC.mkDerivation rec {
pname = "zd1211-firmware";
version = "1.5";
src = fetchurl {
url = "mirror://sourceforge/zd1211/${pname}-${version}.tar.bz2";
hash = "sha256-8R04ENf3KDOZf2NFhKWG3M7XGjU/llq/gQYuxDHQKxI=";
};
installPhase = ''
runHook preInstall
mkdir -p $out/lib/firmware/zd1211
cp * $out/lib/firmware/zd1211
runHook postInstall
'';
meta = {
description = "Firmware for the ZyDAS ZD1211(b) 802.11a/b/g USB WLAN chip";
homepage = "https://sourceforge.net/projects/zd1211/";
license = "GPL";
platforms = lib.platforms.linux;
};
}