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

rtl8192su: rename, set sourceProvenance, modernize (#463179)

parents 7268eb34 28c13ca1
Loading
Loading
Loading
Loading
+7 −6
Original line number Diff line number Diff line
@@ -4,14 +4,14 @@
  fetchFromGitHub,
}:
stdenvNoCC.mkDerivation {
  pname = "rtl8192su";
  pname = "rtl8192su-firmware";
  version = "0-unstable-2016-10-05";

  src = fetchFromGitHub {
    owner = "chunkeey";
    repo = "rtl8192su";
    rev = "c00112c9a14133290fe30bd3b44e45196994cb1c";
    sha256 = "0j3c35paapq1icmxq0mg7pm2xa2m69q7bkfmwgq99d682yr2cb5l";
    hash = "sha256-tCwmshfItJTw49XNdXAyVagu6j2vAtwriwFfpW4ZbEg=";
  };

  dontBuild = true;
@@ -30,11 +30,12 @@ stdenvNoCC.mkDerivation {
    done
  '';

  meta = with lib; {
  meta = {
    description = "Firmware for Realtek RTL8188SU/RTL8191SU/RTL8192SU";
    homepage = "https://github.com/chunkeey/rtl8192su";
    license = licenses.unfreeRedistributableFirmware;
    maintainers = with maintainers; [ mic92 ];
    platforms = with platforms; linux;
    license = lib.licenses.unfreeRedistributableFirmware;
    maintainers = with lib.maintainers; [ mic92 ];
    platforms = lib.platforms.linux;
    sourceProvenance = with lib.sourceTypes; [ binaryFirmware ];
  };
}