Merge pull request #188332 from superherointj/package-rtl8189fs-fix-5.19.2-6.0

rtl8189fs: patch for 5.19.2 and 6.0
This commit is contained in:
superherointj 2022-08-25 20:18:50 -03:00 committed by GitHub
commit 2977a06c07
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,4 +1,4 @@
{ lib, kernel, rtl8189es, fetchFromGitHub }:
{ lib, kernel, rtl8189es, fetchFromGitHub, fetchpatch }:
# rtl8189fs is a branch of the rtl8189es driver
rtl8189es.overrideAttrs (drv: rec {
@ -12,6 +12,13 @@ rtl8189es.overrideAttrs (drv: rec {
sha256 = "sha256-JTv+ssSv5toNcZ5wR6p0Cywdk87z9Bdq0ftU0ekr/98=";
};
patches = [
(fetchpatch {
url = "https://github.com/jwrdegoede/rtl8189ES_linux/pull/81.patch";
sha256 = "sha256-ovFQBIHLk3wi2uwAyr8VmdbuhPcoHsZ/lpA66obVBK4=";
})
];
meta = with lib; {
description = "Driver for Realtek rtl8189fs";
homepage = "https://github.com/jwrdegoede/rtl8189ES_linux/tree/rtl8189fs";