summary refs log tree commit diff
path: root/pkgs/os-specific/linux
diff options
context:
space:
mode:
authorTredwellGit <tredwell@tutanota.com>2021-07-20 19:06:43 +0000
committerTredwellGit <tredwell@tutanota.com>2021-07-20 19:06:43 +0000
commita703195804f27720118120bf80fda99531969fe2 (patch)
tree4fccb078d2314c0cae15c09a35dfaeb23ef4eea8 /pkgs/os-specific/linux
parentf61350ac8916d99611aaf5b8fcb6be120114c7e9 (diff)
downloadnixpkgs-a703195804f27720118120bf80fda99531969fe2.tar
nixpkgs-a703195804f27720118120bf80fda99531969fe2.tar.gz
nixpkgs-a703195804f27720118120bf80fda99531969fe2.tar.bz2
nixpkgs-a703195804f27720118120bf80fda99531969fe2.tar.lz
nixpkgs-a703195804f27720118120bf80fda99531969fe2.tar.xz
nixpkgs-a703195804f27720118120bf80fda99531969fe2.tar.zst
nixpkgs-a703195804f27720118120bf80fda99531969fe2.zip
linux: 5.12.18 -> 5.12.19
Diffstat (limited to 'pkgs/os-specific/linux')
-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 fe180d95563..e1e7aec2ce2 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.18";
+  version = "5.12.19";
 
   # 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 = "12sjscf53z6fc1jah3i2578r3a0i7rkw2jmqi0w328a22i0paakg";
+    sha256 = "0wscz736n13m833cd12lskn47r0b8ki4fhgpjnwga0jsab9iqf79";
   };
 
   kernelTests = args.kernelTests or [ nixosTests.kernel-generic.linux_5_12 ];