summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorTim Steinbach <tim@nequissimus.com>2020-09-03 12:58:58 -0400
committerTim Steinbach <tim@nequissimus.com>2020-09-03 14:15:02 -0400
commite5aeed5120548ca68b3b984d4fd7fdfa88eecc32 (patch)
treecc033f344ab902198af1a27b02200cf1ff2e4895 /pkgs
parent0865dc9f5026c6e731c9a07b755719f65ae3dfc4 (diff)
downloadnixpkgs-e5aeed5120548ca68b3b984d4fd7fdfa88eecc32.tar
nixpkgs-e5aeed5120548ca68b3b984d4fd7fdfa88eecc32.tar.gz
nixpkgs-e5aeed5120548ca68b3b984d4fd7fdfa88eecc32.tar.bz2
nixpkgs-e5aeed5120548ca68b3b984d4fd7fdfa88eecc32.tar.lz
nixpkgs-e5aeed5120548ca68b3b984d4fd7fdfa88eecc32.tar.xz
nixpkgs-e5aeed5120548ca68b3b984d4fd7fdfa88eecc32.tar.zst
nixpkgs-e5aeed5120548ca68b3b984d4fd7fdfa88eecc32.zip
linux: 5.4.61 -> 5.4.62
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/os-specific/linux/kernel/linux-5.4.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/os-specific/linux/kernel/linux-5.4.nix b/pkgs/os-specific/linux/kernel/linux-5.4.nix
index 4c5d4bcd8e8..24bff321869 100644
--- a/pkgs/os-specific/linux/kernel/linux-5.4.nix
+++ b/pkgs/os-specific/linux/kernel/linux-5.4.nix
@@ -3,7 +3,7 @@
 with stdenv.lib;
 
 buildLinux (args // rec {
-  version = "5.4.61";
+  version = "5.4.62";
 
   # 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 = "197y2yb60m1k8i7mig4pa9wsrklfxq81ba3zfahwb2b31w2kvwc6";
+    sha256 = "0w49y8lymz23x4mr5byaxnrkhm56lwfhnqkra07hqyfr5y63v216";
   };
 } // (args.argsOverride or {}))