summary refs log tree commit diff
path: root/pkgs/os-specific/linux/kernel/linux-5.12.nix
diff options
context:
space:
mode:
authorYurii Matsiuk <ymatsiuk@users.noreply.github.com>2021-06-07 20:10:45 +0200
committerTim Steinbach <NeQuissimus@users.noreply.github.com>2021-06-08 14:21:06 -0400
commitd026ea755aefbd941577fa8c3206bcc16a2c3ec7 (patch)
tree1ace9b518f85f7ad154b15c45f3613502c262804 /pkgs/os-specific/linux/kernel/linux-5.12.nix
parentaf416a6290fdeb932c3549b90704a32ebae5c1a5 (diff)
downloadnixpkgs-d026ea755aefbd941577fa8c3206bcc16a2c3ec7.tar
nixpkgs-d026ea755aefbd941577fa8c3206bcc16a2c3ec7.tar.gz
nixpkgs-d026ea755aefbd941577fa8c3206bcc16a2c3ec7.tar.bz2
nixpkgs-d026ea755aefbd941577fa8c3206bcc16a2c3ec7.tar.lz
nixpkgs-d026ea755aefbd941577fa8c3206bcc16a2c3ec7.tar.xz
nixpkgs-d026ea755aefbd941577fa8c3206bcc16a2c3ec7.tar.zst
nixpkgs-d026ea755aefbd941577fa8c3206bcc16a2c3ec7.zip
linux: 5.12.8 -> 5.12.9
Diffstat (limited to 'pkgs/os-specific/linux/kernel/linux-5.12.nix')
-rw-r--r--pkgs/os-specific/linux/kernel/linux-5.12.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/os-specific/linux/kernel/linux-5.12.nix b/pkgs/os-specific/linux/kernel/linux-5.12.nix
index 3c61889bc68..85a69f0c5ad 100644
--- a/pkgs/os-specific/linux/kernel/linux-5.12.nix
+++ b/pkgs/os-specific/linux/kernel/linux-5.12.nix
@@ -3,7 +3,7 @@
 with lib;
 
 buildLinux (args // rec {
-  version = "5.12.8";
+  version = "5.12.9";
 
   # 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,7 +13,7 @@ buildLinux (args // rec {
 
   src = fetchurl {
     url = "mirror://kernel/linux/kernel/v5.x/linux-${version}.tar.xz";
-    sha256 = "134g8d5zvbzdqxy7z6a527dqcmiq4ixf7s05rnnsc4qcajpbcimd";
+    sha256 = "0vg71h8r90fl01a8khyf1776y76rgqisxafky89cswa2fpsvxyn7";
   };
 
   kernelTests = args.kernelTests or [ nixosTests.kernel-generic.linux_5_12 ];