broadcom-bt-firmware: revert to unfree
license was misinterpreted, it is now only conditionally in the all firmware list included, if `allowUnfree` is set. fixes #25567
This commit is contained in:
parent
6d598fccce
commit
192f8e7699
|
@ -23,11 +23,12 @@ with lib;
|
||||||
|
|
||||||
config = mkIf config.hardware.enableAllFirmware {
|
config = mkIf config.hardware.enableAllFirmware {
|
||||||
hardware.firmware = with pkgs; [
|
hardware.firmware = with pkgs; [
|
||||||
broadcom-bt-firmware
|
|
||||||
firmwareLinuxNonfree
|
firmwareLinuxNonfree
|
||||||
intel2200BGFirmware
|
intel2200BGFirmware
|
||||||
rtl8723bs-firmware
|
rtl8723bs-firmware
|
||||||
rtl8192su-firmware
|
rtl8192su-firmware
|
||||||
|
] ++ optionals config.nixpkgs.config.allowUnfree [
|
||||||
|
broadcom-bt-firmware
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -35,7 +35,7 @@ stdenv.mkDerivation rec {
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "Firmware for Broadcom WIDCOMM® Bluetooth devices";
|
description = "Firmware for Broadcom WIDCOMM® Bluetooth devices";
|
||||||
homepage = http://www.catalog.update.microsoft.com/Search.aspx?q=Broadcom+bluetooth;
|
homepage = http://www.catalog.update.microsoft.com/Search.aspx?q=Broadcom+bluetooth;
|
||||||
license = licenses.unfreeRedistributableFirmware;
|
license = licenses.unfree;
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
maintainers = with maintainers; [ zraexy ];
|
maintainers = with maintainers; [ zraexy ];
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue