linux: 4.14.15 -> 4.14.16

This commit is contained in:
Tim Steinbach 2018-01-31 09:05:54 -05:00
parent 0b0afe9a8e
commit 27f5262cf2
No known key found for this signature in database
GPG Key ID: 472BFCCA96BD0EDA

View File

@ -3,15 +3,13 @@
with stdenv.lib;
import ./generic.nix (args // rec {
version = "4.14.15";
# modDirVersion needs to be x.y.z, will automatically add .0 if needed
version = "4.14.16";
# 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 = "0hk15qslkq15x53zkp70gnhdmjg5j9xigyykmig3g03gqsh97hzz";
sha256 = "095c2cjmjfsgnmml4f3lzc0pbhjy8nv8w07rywgpp5s5494dn2q7";
};
} // (args.argsOverride or {}))