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-05-24 18:54:06 +0200
committerYurii Matsiuk <ymatsiuk@users.noreply.github.com>2021-05-24 18:54:06 +0200
commit6485d14e6de1ce89d39367d3d8b7eac5fdae684c (patch)
tree60f69a05eb4bdb90fdaadd2d475693dfb2eb6c9c /pkgs/os-specific/linux/kernel/linux-5.12.nix
parent43730b18ea08d7bf93aee23f47c2683f7a93e945 (diff)
downloadnixpkgs-6485d14e6de1ce89d39367d3d8b7eac5fdae684c.tar
nixpkgs-6485d14e6de1ce89d39367d3d8b7eac5fdae684c.tar.gz
nixpkgs-6485d14e6de1ce89d39367d3d8b7eac5fdae684c.tar.bz2
nixpkgs-6485d14e6de1ce89d39367d3d8b7eac5fdae684c.tar.lz
nixpkgs-6485d14e6de1ce89d39367d3d8b7eac5fdae684c.tar.xz
nixpkgs-6485d14e6de1ce89d39367d3d8b7eac5fdae684c.tar.zst
nixpkgs-6485d14e6de1ce89d39367d3d8b7eac5fdae684c.zip
linux: 5.12.5 -> 5.12.6
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 8efecb53ea1..4e7142b4a31 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.5";
+  version = "5.12.6";
 
   # 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 = "1x39sdswww4j8zr54wpjzy9dia52kihs11xwljxcnz8pck0vwja0";
+    sha256 = "1cdxda5mgdi5dky6hvrq2727rrlw9lnzf30kf3lbiikjybvlqw2b";
   };
 
   kernelTests = args.kernelTests or [ nixosTests.kernel-generic.linux_5_12 ];