tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
rtl8189fs: patch for 5.19.2 and 6.0
superherointj
3 years ago
0f5fe359
6a0d3815
+8
-1
1 changed file
expand all
collapse all
unified
split
pkgs
os-specific
linux
rtl8189fs
default.nix
+8
-1
pkgs/os-specific/linux/rtl8189fs/default.nix
···
1
1
-
{ lib, kernel, rtl8189es, fetchFromGitHub }:
1
1
+
{ lib, kernel, rtl8189es, fetchFromGitHub, fetchpatch }:
2
2
3
3
# rtl8189fs is a branch of the rtl8189es driver
4
4
rtl8189es.overrideAttrs (drv: rec {
···
11
11
rev = "71500c28164369800041d1716ac513457179ce93";
12
12
sha256 = "sha256-JTv+ssSv5toNcZ5wR6p0Cywdk87z9Bdq0ftU0ekr/98=";
13
13
};
14
14
+
15
15
+
patches = [
16
16
+
(fetchpatch {
17
17
+
url = "https://github.com/jwrdegoede/rtl8189ES_linux/pull/81.patch";
18
18
+
sha256 = "sha256-ovFQBIHLk3wi2uwAyr8VmdbuhPcoHsZ/lpA66obVBK4=";
19
19
+
})
20
20
+
];
14
21
15
22
meta = with lib; {
16
23
description = "Driver for Realtek rtl8189fs";