summary refs log tree commit diff
path: root/pkgs/os-specific/linux/rtl88x2bu
diff options
context:
space:
mode:
authorRiey <creeper844@gmail.com>2021-04-08 17:35:43 +0900
committerRiey <creeper844@gmail.com>2021-04-09 04:26:26 +0900
commit29f26a9b80484fb9d2ac0f695e339985800d5e68 (patch)
tree91967ab288354c628cd7eed63abc5f148a6a8bc2 /pkgs/os-specific/linux/rtl88x2bu
parent32b567d9e633931f77481fde75bb8c52f6762a3f (diff)
downloadnixpkgs-29f26a9b80484fb9d2ac0f695e339985800d5e68.tar
nixpkgs-29f26a9b80484fb9d2ac0f695e339985800d5e68.tar.gz
nixpkgs-29f26a9b80484fb9d2ac0f695e339985800d5e68.tar.bz2
nixpkgs-29f26a9b80484fb9d2ac0f695e339985800d5e68.tar.lz
nixpkgs-29f26a9b80484fb9d2ac0f695e339985800d5e68.tar.xz
nixpkgs-29f26a9b80484fb9d2ac0f695e339985800d5e68.tar.zst
nixpkgs-29f26a9b80484fb9d2ac0f695e339985800d5e68.zip
linuxPackages.rtl88x2bu: 2020-08-20 -> 2021-01-21
Diffstat (limited to 'pkgs/os-specific/linux/rtl88x2bu')
-rw-r--r--pkgs/os-specific/linux/rtl88x2bu/default.nix18
1 files changed, 5 insertions, 13 deletions
diff --git a/pkgs/os-specific/linux/rtl88x2bu/default.nix b/pkgs/os-specific/linux/rtl88x2bu/default.nix
index fb94b14d9ea..cc37ef13d50 100644
--- a/pkgs/os-specific/linux/rtl88x2bu/default.nix
+++ b/pkgs/os-specific/linux/rtl88x2bu/default.nix
@@ -1,24 +1,16 @@
-{ lib, stdenv, fetchFromGitHub, fetchpatch, kernel, bc }:
+{ lib, stdenv, fetchFromGitHub, kernel, bc }:
 
 stdenv.mkDerivation rec {
   name = "rtl88x2bu-${kernel.version}-${version}";
-  version = "unstable-2020-08-20";
+  version = "unstable-2021-01-21";
 
   src = fetchFromGitHub {
     owner = "cilynx";
     repo = "rtl88x2BU";
-    rev = "a1c53f43fb9995fbe3ad26567079d6384626d350";
-    sha256 = "1cby66jg511zxs1i535mflafhryla9764mnrzacxppimxpancv3s";
+    rev = "48e7c19c92a77554403e1347447f8e2cfd780228";
+    sha256 = "0nw2kgblpq6qlr43gbfxqvq0c83664f4czfwzsyfjr47rj00iyq7";
   };
 
-  patches = [
-    # https://github.com/cilynx/rtl88x2bu/pull/58
-    (fetchpatch {
-      url = "https://github.com/cilynx/rtl88x2bu/pull/58.patch";
-      sha256 = "0md9cv61nx85pk3v60y9wviyb9fgj54q9m26wiv3dc7smr70h8l6";
-    })
-  ];
-
   hardeningDisable = [ "pic" ];
 
   nativeBuildInputs = [ bc ];
@@ -39,7 +31,7 @@ stdenv.mkDerivation rec {
   meta = with lib; {
     description = "Realtek rtl88x2bu driver";
     homepage = "https://github.com/cilynx/rtl88x2bu";
-    license = licenses.gpl2;
+    license = licenses.gpl2Only;
     platforms = platforms.linux;
     maintainers = [ maintainers.ralith ];
   };