about summary refs log tree commit diff
path: root/nixpkgs/pkgs
diff options
context:
space:
mode:
authorTim Steinbach <tim@nequissimus.com>2020-08-26 13:29:31 -0400
committerAlyssa Ross <hi@alyssa.is>2020-09-29 11:51:02 +0000
commit562330037f83e3a3bd1e2d15734d7b7f852e2a84 (patch)
tree865f4c577be585404cd4c0621ff4a2f363b343f6 /nixpkgs/pkgs
parent4cfef4ec652a67f486a827b521d0f578839026a4 (diff)
downloadnixlib-562330037f83e3a3bd1e2d15734d7b7f852e2a84.tar
nixlib-562330037f83e3a3bd1e2d15734d7b7f852e2a84.tar.gz
nixlib-562330037f83e3a3bd1e2d15734d7b7f852e2a84.tar.bz2
nixlib-562330037f83e3a3bd1e2d15734d7b7f852e2a84.tar.lz
nixlib-562330037f83e3a3bd1e2d15734d7b7f852e2a84.tar.xz
nixlib-562330037f83e3a3bd1e2d15734d7b7f852e2a84.tar.zst
nixlib-562330037f83e3a3bd1e2d15734d7b7f852e2a84.zip
linux: 5.8.3 -> 5.8.4
(cherry picked from commit 1a94103f12166004259317c0bcd3de29ca3e532d)
Diffstat (limited to 'nixpkgs/pkgs')
-rw-r--r--nixpkgs/pkgs/os-specific/linux/kernel/linux-5.8.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixpkgs/pkgs/os-specific/linux/kernel/linux-5.8.nix b/nixpkgs/pkgs/os-specific/linux/kernel/linux-5.8.nix
index 44ce98ce65ed..5d545f184f32 100644
--- a/nixpkgs/pkgs/os-specific/linux/kernel/linux-5.8.nix
+++ b/nixpkgs/pkgs/os-specific/linux/kernel/linux-5.8.nix
@@ -3,7 +3,7 @@
 with stdenv.lib;
 
 buildLinux (args // rec {
-  version = "5.8.3";
+  version = "5.8.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,6 +13,6 @@ buildLinux (args // rec {
 
   src = fetchurl {
     url = "mirror://kernel/linux/kernel/v5.x/linux-${version}.tar.xz";
-    sha256 = "0y8prifvkywqsx5lk80bh31m505vinmicpvdrirgg0c9scg7x8lf";
+    sha256 = "15hyz92wsk6fxqr1rq0k77qw76jka2igpc9xviwa0j4a5qrr43fv";
   };
 } // (args.argsOverride or {}))