Skip to content

Commit 192f8e7

Browse files
committedMay 8, 2017
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
1 parent 6d598fc commit 192f8e7

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed
 

‎nixos/modules/hardware/all-firmware.nix

+2-1
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,12 @@ with lib;
2323

2424
config = mkIf config.hardware.enableAllFirmware {
2525
hardware.firmware = with pkgs; [
26-
broadcom-bt-firmware
2726
firmwareLinuxNonfree
2827
intel2200BGFirmware
2928
rtl8723bs-firmware
3029
rtl8192su-firmware
30+
] ++ optionals config.nixpkgs.config.allowUnfree [
31+
broadcom-bt-firmware
3132
];
3233
};
3334

‎pkgs/os-specific/linux/firmware/broadcom-bt-firmware/default.nix

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ stdenv.mkDerivation rec {
3535
meta = with stdenv.lib; {
3636
description = "Firmware for Broadcom WIDCOMM® Bluetooth devices";
3737
homepage = http://www.catalog.update.microsoft.com/Search.aspx?q=Broadcom+bluetooth;
38-
license = licenses.unfreeRedistributableFirmware;
38+
license = licenses.unfree;
3939
platforms = platforms.linux;
4040
maintainers = with maintainers; [ zraexy ];
4141
};

0 commit comments

Comments
 (0)