linux: 4.14.30 -> 4.14.31

This commit is contained in:
Tim Steinbach 2018-03-28 16:55:06 -04:00
parent 97c840eeeb
commit 6baf64f8f1
No known key found for this signature in database
GPG Key ID: 472BFCCA96BD0EDA

View File

@ -3,13 +3,13 @@
with stdenv.lib;
buildLinux (args // rec {
version = "4.14.30";
version = "4.14.31";
# 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 = "0ib6zqn1psffgffmvqmh9x3wdh15yd8z0gwwkamvgwa8xcpv0nvw";
sha256 = "0h30z1dlrr9zdxvqlk5lq5m9db3k6n9ci39mlsjkd5kx4ia8lnyd";
};
} // (args.argsOverride or {}))