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>2022-02-03 11:37:12 +0000
committerTredwellGit <tredwell@tutanota.com>2022-02-03 11:37:12 +0000
commita752a2371a8fbead1be437d28fc92423a35c36d0 (patch)
tree74ce6ea32241777940542c2e4e8ad85fab8c9f11 /pkgs/os-specific/linux/kernel/linux-5.10.nix
parent4e53ba1b1b91f2d8f766d98917ccb2d4ef99f9d1 (diff)
downloadnixpkgs-a752a2371a8fbead1be437d28fc92423a35c36d0.tar
nixpkgs-a752a2371a8fbead1be437d28fc92423a35c36d0.tar.gz
nixpkgs-a752a2371a8fbead1be437d28fc92423a35c36d0.tar.bz2
nixpkgs-a752a2371a8fbead1be437d28fc92423a35c36d0.tar.lz
nixpkgs-a752a2371a8fbead1be437d28fc92423a35c36d0.tar.xz
nixpkgs-a752a2371a8fbead1be437d28fc92423a35c36d0.tar.zst
nixpkgs-a752a2371a8fbead1be437d28fc92423a35c36d0.zip
linux: 5.10.95 -> 5.10.96
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 66a43d7f8a5..4f1a32977f2 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.95";
+  version = "5.10.96";
 
   # 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 = "08zwcf66varjm2s4lb5a5yh5lh90kb43d6dlrg4xv1179vwxmnf8";
+    sha256 = "0j70nbsxy6qpynr3f9igl9wf14wx40diazf4j7w7mlwxh51a1r9m";
   };
 } // (args.argsOverride or {}))