summary refs log tree commit diff
path: root/pkgs/os-specific/linux/kernel/linux-5.10.nix
diff options
context:
space:
mode:
authorTredwellGit <tredwell@tutanota.com>2021-12-09 06:29:07 +0000
committerTredwellGit <tredwell@tutanota.com>2021-12-09 06:29:07 +0000
commit2e7590e84fd630f1b55505322d68c46cd4e2120e (patch)
tree79646bbe567a0545c5b76b478a18d8012cb60fcc /pkgs/os-specific/linux/kernel/linux-5.10.nix
parentad844d0a89e063c5f4da639d820e592d4dc5af30 (diff)
downloadnixpkgs-2e7590e84fd630f1b55505322d68c46cd4e2120e.tar
nixpkgs-2e7590e84fd630f1b55505322d68c46cd4e2120e.tar.gz
nixpkgs-2e7590e84fd630f1b55505322d68c46cd4e2120e.tar.bz2
nixpkgs-2e7590e84fd630f1b55505322d68c46cd4e2120e.tar.lz
nixpkgs-2e7590e84fd630f1b55505322d68c46cd4e2120e.tar.xz
nixpkgs-2e7590e84fd630f1b55505322d68c46cd4e2120e.tar.zst
nixpkgs-2e7590e84fd630f1b55505322d68c46cd4e2120e.zip
linux: 5.10.83 -> 5.10.84
Diffstat (limited to 'pkgs/os-specific/linux/kernel/linux-5.10.nix')
-rw-r--r--pkgs/os-specific/linux/kernel/linux-5.10.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/os-specific/linux/kernel/linux-5.10.nix b/pkgs/os-specific/linux/kernel/linux-5.10.nix
index c49d248a366..43b0d7d1a32 100644
--- a/pkgs/os-specific/linux/kernel/linux-5.10.nix
+++ b/pkgs/os-specific/linux/kernel/linux-5.10.nix
@@ -3,7 +3,7 @@
 with lib;
 
 buildLinux (args // rec {
-  version = "5.10.83";
+  version = "5.10.84";
 
   # modDirVersion needs to be x.y.z, will automatically add .0 if needed
   modDirVersion = if (modDirVersionArg == null) then concatStringsSep "." (take 3 (splitVersion "${version}.0")) else modDirVersionArg;
@@ -13,6 +13,6 @@ buildLinux (args // rec {
 
   src = fetchurl {
     url = "mirror://kernel/linux/kernel/v5.x/linux-${version}.tar.xz";
-    sha256 = "0w4vq8wby3m9f5ryssh6z948m6zj1bjz9x432805dnrxyd1rl9gg";
+    sha256 = "0g935v0khv0i2qlrwr656hxl28m6zlbclc9rv15nq46xf8fjg5kf";
   };
 } // (args.argsOverride or {}))