Unverified Commit 159d23cb authored by Stefan Frijters's avatar Stefan Frijters
Browse files

linux-firmware: set sourceProvenance, remove 'with lib'

parent 9cdc1e73
Loading
Loading
Loading
Loading
+5 −4
Original line number Diff line number Diff line
@@ -51,12 +51,13 @@ stdenvNoCC.mkDerivation rec {
  # Firmware blobs do not need fixing and should not be modified
  dontFixup = true;

  meta = with lib; {
  meta = {
    description = "Binary firmware collection packaged by kernel.org";
    homepage = "https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git";
    license = licenses.unfreeRedistributableFirmware;
    platforms = platforms.linux;
    maintainers = with maintainers; [ fpletz ];
    license = lib.licenses.unfreeRedistributableFirmware;
    platforms = lib.platforms.linux;
    maintainers = with lib.maintainers; [ fpletz ];
    priority = 6; # give precedence to kernel firmware
    sourceProvenance = with lib.sourceTypes; [ binaryFirmware ];
  };
}