summary refs log tree commit diff
path: root/pkgs/os-specific
diff options
context:
space:
mode:
authorTim Steinbach <tim@nequissimus.com>2020-01-18 11:41:44 -0500
committerTim Steinbach <tim@nequissimus.com>2020-01-18 11:41:44 -0500
commit64d20fe9cc302db901bcc2da9794b11787e6b6cc (patch)
tree5b90de75f79ed778eb9a47854870adc1c2c2d8ed /pkgs/os-specific
parentcac9f210cf80b23b6a4d746be3f3ab6cac926637 (diff)
downloadnixpkgs-64d20fe9cc302db901bcc2da9794b11787e6b6cc.tar
nixpkgs-64d20fe9cc302db901bcc2da9794b11787e6b6cc.tar.gz
nixpkgs-64d20fe9cc302db901bcc2da9794b11787e6b6cc.tar.bz2
nixpkgs-64d20fe9cc302db901bcc2da9794b11787e6b6cc.tar.lz
nixpkgs-64d20fe9cc302db901bcc2da9794b11787e6b6cc.tar.xz
nixpkgs-64d20fe9cc302db901bcc2da9794b11787e6b6cc.tar.zst
nixpkgs-64d20fe9cc302db901bcc2da9794b11787e6b6cc.zip
linux: 5.4.12 -> 5.4.13
Diffstat (limited to 'pkgs/os-specific')
-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 76f7430f104..9b1ebeeb489 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.12";
+  version = "5.4.13";
 
   # 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 = "1yyh934ifzwgqlpd8wy50z9d68hla5arvy50pi6c499dsnicghyr";
+    sha256 = "1mva73ywb2r5lrmzp5m7hyy0zpgxdg91nw42c1z1sz3ydpcjkys9";
   };
 } // (args.argsOverride or {}))