summary refs log tree commit diff
path: root/pkgs/os-specific/linux/rtl8814au
diff options
context:
space:
mode:
authorfortuneteller2k <lythe1107@gmail.com>2021-05-19 13:31:49 +0800
committerfortuneteller2k <lythe1107@gmail.com>2021-05-19 13:34:25 +0800
commit4e045f313b58468dd0975b1894b90f6ea1b3ffd0 (patch)
tree50b9f09c2901d3af3ca7711ffd5a614073c0aa17 /pkgs/os-specific/linux/rtl8814au
parent5b4915fb7a74ae13be2f9eb40a224f2005da2a4f (diff)
downloadnixpkgs-4e045f313b58468dd0975b1894b90f6ea1b3ffd0.tar
nixpkgs-4e045f313b58468dd0975b1894b90f6ea1b3ffd0.tar.gz
nixpkgs-4e045f313b58468dd0975b1894b90f6ea1b3ffd0.tar.bz2
nixpkgs-4e045f313b58468dd0975b1894b90f6ea1b3ffd0.tar.lz
nixpkgs-4e045f313b58468dd0975b1894b90f6ea1b3ffd0.tar.xz
nixpkgs-4e045f313b58468dd0975b1894b90f6ea1b3ffd0.tar.zst
nixpkgs-4e045f313b58468dd0975b1894b90f6ea1b3ffd0.zip
linuxPackages.rtl8814au: move to a more maintained fork
Diffstat (limited to 'pkgs/os-specific/linux/rtl8814au')
-rw-r--r--pkgs/os-specific/linux/rtl8814au/default.nix19
1 files changed, 9 insertions, 10 deletions
diff --git a/pkgs/os-specific/linux/rtl8814au/default.nix b/pkgs/os-specific/linux/rtl8814au/default.nix
index a710ef34e95..2b0fb9622a4 100644
--- a/pkgs/os-specific/linux/rtl8814au/default.nix
+++ b/pkgs/os-specific/linux/rtl8814au/default.nix
@@ -1,14 +1,14 @@
 { lib, stdenv, fetchFromGitHub, kernel }:
 
-stdenv.mkDerivation rec {
-  name = "rtl8814au-${kernel.version}-${version}";
-  version = "4.3.21";
+stdenv.mkDerivation {
+  pname = "rtl8814au";
+  version = "${kernel.version}-unstable-2021-05-18";
 
   src = fetchFromGitHub {
-    owner = "zebulon2";
-    repo = "rtl8814au";
-    rev = "a58c56a5a6cb99ffb872f07cb67b68197911854f";
-    sha256 = "1ffm67da183nz009gm5v9w1bab081hrm113kk8knl9s5qbqnn13q";
+    owner = "morrownr";
+    repo = "8814au";
+    rev = "388786c864f9b1437fc4d934b1eccf6d7f1e1355";
+    sha256 = "sha256-2EnheODPFWTGN/fz45LWRSOGeV6pTENEUrehahj+PJ4=";
   };
 
   buildInputs = kernel.moduleBuildDependencies;
@@ -31,9 +31,8 @@ stdenv.mkDerivation rec {
 
   meta = with lib; {
     description = "Realtek 8814AU USB WiFi driver";
-    homepage = "https://github.com/zebulon2/rtl8814au";
-    license = licenses.gpl2;
+    homepage = "https://github.com/morrownr/8814au";
+    license = licenses.gpl2Only;
     maintainers = [ maintainers.lassulus ];
-    platforms = [ "x86_64-linux" "i686-linux" ];
   };
 }