about summary refs log tree commit diff
diff options
context:
space:
mode:
authorTim Steinbach <tim@nequissimus.com>2020-08-08 10:03:01 -0400
committerAlyssa Ross <hi@alyssa.is>2020-09-29 11:50:27 +0000
commit3c98d79a8ee2065829eb3d68fe240ffc1492e878 (patch)
treee9924c0ca49eba525c9527e7c3aa5f956317aff8
parent6b84dfb0298c5873bdc72c1935f5b101984e8c75 (diff)
downloadnixlib-3c98d79a8ee2065829eb3d68fe240ffc1492e878.tar
nixlib-3c98d79a8ee2065829eb3d68fe240ffc1492e878.tar.gz
nixlib-3c98d79a8ee2065829eb3d68fe240ffc1492e878.tar.bz2
nixlib-3c98d79a8ee2065829eb3d68fe240ffc1492e878.tar.lz
nixlib-3c98d79a8ee2065829eb3d68fe240ffc1492e878.tar.xz
nixlib-3c98d79a8ee2065829eb3d68fe240ffc1492e878.tar.zst
nixlib-3c98d79a8ee2065829eb3d68fe240ffc1492e878.zip
linux: 5.4.56 -> 5.4.57
(cherry picked from commit 7964867f39a274f491ff420cded279bdb54808ce)
-rw-r--r--nixpkgs/pkgs/os-specific/linux/kernel/linux-5.4.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixpkgs/pkgs/os-specific/linux/kernel/linux-5.4.nix b/nixpkgs/pkgs/os-specific/linux/kernel/linux-5.4.nix
index 90f199f4026d..0ad7f8eeafd4 100644
--- a/nixpkgs/pkgs/os-specific/linux/kernel/linux-5.4.nix
+++ b/nixpkgs/pkgs/os-specific/linux/kernel/linux-5.4.nix
@@ -3,7 +3,7 @@
 with stdenv.lib;
 
 buildLinux (args // rec {
-  version = "5.4.56";
+  version = "5.4.57";
 
   # 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,6 +13,6 @@ buildLinux (args // rec {
 
   src = fetchurl {
     url = "mirror://kernel/linux/kernel/v5.x/linux-${version}.tar.xz";
-    sha256 = "1bbwqpcv8ha25kk1shfnsb2j8ydhcjkzq0w4xmimdv40hjwr10ri";
+    sha256 = "1fhprnkc7066iz6zxhskqarjmvwcan2jpfp00hd1q7rw2sw1n398";
   };
 } // (args.argsOverride or {}))