3
0
Fork 0
forked from mirrors/nixpkgs

linux: 4.14.49 -> 4.14.50

This commit is contained in:
Tim Steinbach 2018-06-16 20:30:33 -04:00
parent a06962d08c
commit c4d0d91070
No known key found for this signature in database
GPG key ID: 472BFCCA96BD0EDA

View file

@ -3,7 +3,7 @@
with stdenv.lib;
buildLinux (args // rec {
version = "4.14.49";
version = "4.14.50";
# 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;
@ -13,6 +13,6 @@ buildLinux (args // rec {
src = fetchurl {
url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz";
sha256 = "1xrvklrh0zf3ma61qkbng2495j4bcvif45l8bm5074pk3rrlk7y6";
sha256 = "1b529qp5cixvp47h8jhincnc40n7l27qawkgjf6l5p157c0qsfkh";
};
} // (args.argsOverride or {}))