Commit 6530ed81 authored by NullCube's avatar NullCube Committed by Alyssa Ross
Browse files

linuxPackages.broadcom_sta: fix homepage url, fix platforms

Update homepage URL to point to broadcom_sta resources
Correctly set meta.platforms to match available versions
parent 51b4ad9e
Loading
Loading
Loading
Loading
+5 −2
Original line number Diff line number Diff line
@@ -94,12 +94,15 @@ stdenv.mkDerivation {

  meta = {
    description = "Kernel module driver for some Broadcom's wireless cards";
    homepage = "http://www.broadcom.com/support/802.11/linux_sta.php";
    homepage = "https://www.broadcom.com/support/download-search?pg=Legacy%20Products&pf=Legacy%20Wireless&pn&pa&po&dk&pl";
    license = lib.licenses.unfreeRedistributable;
    maintainers = with lib.maintainers; [
      j0hax
      nullcube
    ];
    platforms = lib.platforms.linux;
    platforms = [
      "i686-linux"
      "x86_64-linux"
    ];
  };
}