Unverified Commit 8458990f authored by Aleksana's avatar Aleksana Committed by GitHub
Browse files

intel2200BGFirmware: set sourceProvenance, remove 'with lib' (#463176)

parents b86359bf 6cdce432
Loading
Loading
Loading
Loading
+5 −4
Original line number Diff line number Diff line
@@ -24,11 +24,12 @@ stdenvNoCC.mkDerivation rec {
    runHook postInstall
  '';

  meta = with lib; {
  meta = {
    description = "Firmware for Intel 2200BG cards";
    homepage = "https://ipw2200.sourceforge.net/firmware.php";
    license = licenses.unfreeRedistributableFirmware;
    maintainers = with maintainers; [ sternenseemann ];
    platforms = platforms.linux;
    license = lib.licenses.unfreeRedistributableFirmware;
    maintainers = with lib.maintainers; [ sternenseemann ];
    platforms = lib.platforms.linux;
    sourceProvenance = with lib.sourceTypes; [ binaryFirmware ];
  };
}