summary refs log tree commit diff
path: root/pkgs/os-specific/linux/kernel
diff options
context:
space:
mode:
authorTredwellGit <tredwell@tutanota.com>2021-07-08 23:08:03 +0000
committerTredwellGit <tredwell@tutanota.com>2021-07-08 23:08:03 +0000
commite0f9f09c1740d0d80ead4002016bd3df0fc1b197 (patch)
tree323378b876767fc0f629a0be03998bf344d78711 /pkgs/os-specific/linux/kernel
parent9462b074a8f2f34f3a4dd6b56ff22f760a8301f0 (diff)
downloadnixpkgs-e0f9f09c1740d0d80ead4002016bd3df0fc1b197.tar
nixpkgs-e0f9f09c1740d0d80ead4002016bd3df0fc1b197.tar.gz
nixpkgs-e0f9f09c1740d0d80ead4002016bd3df0fc1b197.tar.bz2
nixpkgs-e0f9f09c1740d0d80ead4002016bd3df0fc1b197.tar.lz
nixpkgs-e0f9f09c1740d0d80ead4002016bd3df0fc1b197.tar.xz
nixpkgs-e0f9f09c1740d0d80ead4002016bd3df0fc1b197.tar.zst
nixpkgs-e0f9f09c1740d0d80ead4002016bd3df0fc1b197.zip
linux: 5.12.14 -> 5.12.15
Diffstat (limited to 'pkgs/os-specific/linux/kernel')
-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 93e7499c8dd..3a482d92a44 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.14";
+  version = "5.12.15";
 
   # 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 = "1b3xnb62n53vm6larkvv2vzd9w7cjnqh8zh6jzq9lpcg12c3pjlh";
+    sha256 = "1nlgwcxfhxzf5wak8c0gamn4k8vpdllzqlpqqn5fa08cdjcymz27";
   };
 
   kernelTests = args.kernelTests or [ nixosTests.kernel-generic.linux_5_12 ];