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-22 17:09:37 +0000
committerTredwellGit <tredwell@tutanota.com>2021-12-22 17:09:37 +0000
commit9b43bf552f81a0c99ce223787bac80389e73ced6 (patch)
tree338e565440665704fc38af72158020a973eae575 /pkgs/os-specific/linux/kernel/linux-5.10.nix
parent2ccbef604f538a8a8d776840dafcbd8469e56c69 (diff)
downloadnixpkgs-9b43bf552f81a0c99ce223787bac80389e73ced6.tar
nixpkgs-9b43bf552f81a0c99ce223787bac80389e73ced6.tar.gz
nixpkgs-9b43bf552f81a0c99ce223787bac80389e73ced6.tar.bz2
nixpkgs-9b43bf552f81a0c99ce223787bac80389e73ced6.tar.lz
nixpkgs-9b43bf552f81a0c99ce223787bac80389e73ced6.tar.xz
nixpkgs-9b43bf552f81a0c99ce223787bac80389e73ced6.tar.zst
nixpkgs-9b43bf552f81a0c99ce223787bac80389e73ced6.zip
linux: 5.10.87 -> 5.10.88
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 908b863d145..3165e8b7e34 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.87";
+  version = "5.10.88";
 
   # 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 = "0jz6xhph7x0x11cjmypaw5gh8z4d53dcgx2gmg7k6d06ydq8n4h3";
+    sha256 = "1sv8j34k75xpbdgyddhlszlgn74fbj0girgixz7v18l2qfv331kg";
   };
 } // (args.argsOverride or {}))