linux: 4.19.33 -> 4.19.34

This commit is contained in:
Tim Steinbach 2019-04-06 12:52:04 -04:00
parent b60ce2e638
commit c45589b0bb
No known key found for this signature in database
GPG key ID: 6C654787275A64F1

View file

@ -3,16 +3,15 @@
with stdenv.lib;
buildLinux (args // rec {
version = "4.19.33";
version = "4.19.34";
# modDirVersion needs to be x.y.z, will automatically add .0 if needed
modDirVersion = if (modDirVersionArg == null) then concatStrings (intersperse "." (take 3 (splitString "." "${version}.0"))) else modDirVersionArg;
# branchVersion needs to be x.y
extraMeta.branch = concatStrings (intersperse "." (take 2 (splitString "." version)));
src = fetchurl {
url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz";
sha256 = "14yk5hli62q1g8vghjjghbxjkpxns8zp0l2wmyhlx0v21bx2v89r";
sha256 = "1k5qhyh7nwfs5pkbrjpxyj6w17424qcmmd9v7jqfbgnx3wm5wyfx";
};
} // (args.argsOverride or {}))