summary refs log tree commit diff
path: root/pkgs/os-specific/linux/kernel/linux-5.10.nix
diff options
context:
space:
mode:
authorajs124 <git@ajs124.de>2021-03-12 04:07:52 +0100
committerTim Steinbach <NeQuissimus@users.noreply.github.com>2021-03-15 09:59:13 -0400
commit7760c71c9cd153b040e348d6e94e5ea344136922 (patch)
tree4bf8963684d8013f51948c5c5a5472ac0e79bf05 /pkgs/os-specific/linux/kernel/linux-5.10.nix
parent7513be6e65c234bb2140ba86b1bd50274a3884d6 (diff)
downloadnixpkgs-7760c71c9cd153b040e348d6e94e5ea344136922.tar
nixpkgs-7760c71c9cd153b040e348d6e94e5ea344136922.tar.gz
nixpkgs-7760c71c9cd153b040e348d6e94e5ea344136922.tar.bz2
nixpkgs-7760c71c9cd153b040e348d6e94e5ea344136922.tar.lz
nixpkgs-7760c71c9cd153b040e348d6e94e5ea344136922.tar.xz
nixpkgs-7760c71c9cd153b040e348d6e94e5ea344136922.tar.zst
nixpkgs-7760c71c9cd153b040e348d6e94e5ea344136922.zip
linux: 5.10.22 -> 5.10.23
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 bdecf6a9bb4..6ce16e67cd5 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.22";
+  version = "5.10.23";
 
   # 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 = "1pv3661d1gvkdl2jg6wx95lr5lcp6q77jrmx0m4a6z6n6asicnr4";
+    sha256 = "0snvkrs95wbx611kcnap59whfiz6h6mzsnbwswk5py3gxh1irqpn";
   };
 } // (args.argsOverride or {}))