summary refs log tree commit diff
path: root/pkgs/os-specific/linux/kernel/linux-5.12.nix
diff options
context:
space:
mode:
authorTredwellGit <tredwell@tutanota.com>2021-05-14 21:40:41 +0000
committerTredwellGit <tredwell@tutanota.com>2021-05-14 21:40:41 +0000
commit1f0dc90f1a4cd247e92caa296fcbb184c845d2d7 (patch)
treed36d0696076ff49374bcf14a46591550a85f3cae /pkgs/os-specific/linux/kernel/linux-5.12.nix
parentf861540ac24ae0ea3dc83e976ffc05fd63b63c14 (diff)
downloadnixpkgs-1f0dc90f1a4cd247e92caa296fcbb184c845d2d7.tar
nixpkgs-1f0dc90f1a4cd247e92caa296fcbb184c845d2d7.tar.gz
nixpkgs-1f0dc90f1a4cd247e92caa296fcbb184c845d2d7.tar.bz2
nixpkgs-1f0dc90f1a4cd247e92caa296fcbb184c845d2d7.tar.lz
nixpkgs-1f0dc90f1a4cd247e92caa296fcbb184c845d2d7.tar.xz
nixpkgs-1f0dc90f1a4cd247e92caa296fcbb184c845d2d7.tar.zst
nixpkgs-1f0dc90f1a4cd247e92caa296fcbb184c845d2d7.zip
linux: 5.12.3 -> 5.12.4
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 3b63b3d1895..39366147ae5 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.3";
+  version = "5.12.4";
 
   # 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 = "13c7jbizf254rh4arvlgzk87vx7sz6psba47jnax23lbgal18dqk";
+    sha256 = "0wv89gwf5v8m7wi2f3bv9mdr8n9raq998sy4m1m2lwwjhkpgwq2s";
   };
 
   kernelTests = args.kernelTests or [ nixosTests.kernel-generic.linux_5_12 ];