Merge pull request #259168 from SuperSandro2000/zd1211

zd1211: only copy firmware files according to readme, update license
This commit is contained in:
Arnout Engelen 2024-01-15 11:54:13 +01:00 committed by GitHub
commit c3e128f3c0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -16,7 +16,7 @@ stdenvNoCC.mkDerivation rec {
runHook preInstall
mkdir -p $out/lib/firmware/zd1211
cp * $out/lib/firmware/zd1211
cp zd1211* $out/lib/firmware/zd1211
runHook postInstall
'';
@ -24,7 +24,7 @@ stdenvNoCC.mkDerivation rec {
meta = {
description = "Firmware for the ZyDAS ZD1211(b) 802.11a/b/g USB WLAN chip";
homepage = "https://sourceforge.net/projects/zd1211/";
license = "GPL";
license = lib.licenses.gpl2;
platforms = lib.platforms.linux;
};
}