linux: 5.4.12 -> 5.4.13

This commit is contained in:
Tim Steinbach 2020-01-18 11:41:44 -05:00
parent cac9f210cf
commit 64d20fe9cc
No known key found for this signature in database
GPG Key ID: FD36A5EAAC49035A
1 changed files with 2 additions and 2 deletions

View File

@ -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 {}))