summary refs log tree commit diff
path: root/pkgs/os-specific/linux/rtl8821ce/default.nix
diff options
context:
space:
mode:
authorSamuel Gräfenstein <git@samuelgrf.com>2021-03-29 06:08:39 +0200
committerSamuel Gräfenstein <git@samuelgrf.com>2021-03-29 10:03:41 +0200
commit294dabf78c67e96a55e427a1c78b30c16a389332 (patch)
tree9cea465a642a9b2fff90de410f3f9c9b476112e2 /pkgs/os-specific/linux/rtl8821ce/default.nix
parent9d8e05e088ad91b7c62886a2175f38bfa443db2c (diff)
downloadnixpkgs-294dabf78c67e96a55e427a1c78b30c16a389332.tar
nixpkgs-294dabf78c67e96a55e427a1c78b30c16a389332.tar.gz
nixpkgs-294dabf78c67e96a55e427a1c78b30c16a389332.tar.bz2
nixpkgs-294dabf78c67e96a55e427a1c78b30c16a389332.tar.lz
nixpkgs-294dabf78c67e96a55e427a1c78b30c16a389332.tar.xz
nixpkgs-294dabf78c67e96a55e427a1c78b30c16a389332.tar.zst
nixpkgs-294dabf78c67e96a55e427a1c78b30c16a389332.zip
linuxPackages.rtl8821ce: 2020-12-16 -> 2021-03-21, ...
clarify gpl2 license with gpl2Only

Fix building for kernel versions >5.10.
Diffstat (limited to 'pkgs/os-specific/linux/rtl8821ce/default.nix')
-rw-r--r--pkgs/os-specific/linux/rtl8821ce/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/os-specific/linux/rtl8821ce/default.nix b/pkgs/os-specific/linux/rtl8821ce/default.nix
index 050830927e9..e5b34fa665d 100644
--- a/pkgs/os-specific/linux/rtl8821ce/default.nix
+++ b/pkgs/os-specific/linux/rtl8821ce/default.nix
@@ -2,13 +2,13 @@
 
 stdenv.mkDerivation rec {
   pname = "rtl8821ce-${kernel.version}";
-  version = "unstable-2020-12-16";
+  version = "unstable-2021-03-21";
 
   src = fetchFromGitHub {
     owner = "tomaspinho";
     repo = "rtl8821ce";
-    rev = "14b536f0c9ad2d0abbdab8afc7ade684900ca9cf";
-    sha256 = "0z7r7spsgn22gwv9pcmkdjn9ingi8jj7xkxasph8118h46fw8ip2";
+    rev = "897e7c4c15dd5a0a569745dc223d969a26ff5bfc";
+    sha256 = "0935dzz0njxh78wfd17yqah1dxn6b3kaszvzclwwrwwhwcrdp80j";
   };
 
   hardeningDisable = [ "pic" ];
@@ -31,7 +31,7 @@ stdenv.mkDerivation rec {
   meta = with lib; {
     description = "Realtek rtl8821ce driver";
     homepage = "https://github.com/tomaspinho/rtl8821ce";
-    license = licenses.gpl2;
+    license = licenses.gpl2Only;
     platforms = platforms.linux;
     maintainers = with maintainers; [ hhm samuelgrf ];
   };