summary refs log tree commit diff
path: root/pkgs/os-specific/linux/kernel
diff options
context:
space:
mode:
authorTim Steinbach <tim@nequissimus.com>2019-12-22 19:55:51 -0500
committerTim Steinbach <tim@nequissimus.com>2019-12-22 19:55:51 -0500
commit36997b38509b8c9dff9562eb762c2271bbd5b335 (patch)
treefef610db7aac837f1b96dc5b4f2ae66353610642 /pkgs/os-specific/linux/kernel
parentbb74e9cdeb13584419c7b292bc29bd41e063e0f6 (diff)
downloadnixpkgs-36997b38509b8c9dff9562eb762c2271bbd5b335.tar
nixpkgs-36997b38509b8c9dff9562eb762c2271bbd5b335.tar.gz
nixpkgs-36997b38509b8c9dff9562eb762c2271bbd5b335.tar.bz2
nixpkgs-36997b38509b8c9dff9562eb762c2271bbd5b335.tar.lz
nixpkgs-36997b38509b8c9dff9562eb762c2271bbd5b335.tar.xz
nixpkgs-36997b38509b8c9dff9562eb762c2271bbd5b335.tar.zst
nixpkgs-36997b38509b8c9dff9562eb762c2271bbd5b335.zip
linux: 5.4.5 -> 5.4.6
Diffstat (limited to 'pkgs/os-specific/linux/kernel')
-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 11cfcae8673..8fdb4f47e4f 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.5";
+  version = "5.4.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,6 +13,6 @@ buildLinux (args // rec {
 
   src = fetchurl {
     url = "mirror://kernel/linux/kernel/v5.x/linux-${version}.tar.xz";
-    sha256 = "1h1ynb51gd4kiakqlkcc7vny45j2snbg4j985qf171mszckrz3jn";
+    sha256 = "1j4916izy2nrzq7g6m5m365r60hhhx9rqcanjvaxv5x3vsy639gx";
   };
 } // (args.argsOverride or {}))