3
0
Fork 0
forked from mirrors/nixpkgs

linux: 4.14.151 -> 4.14.152

This commit is contained in:
Tim Steinbach 2019-11-06 13:37:46 -05:00
parent f28fad5e2f
commit 2316150e64
No known key found for this signature in database
GPG key ID: 6C654787275A64F1

View file

@ -3,7 +3,7 @@
with stdenv.lib;
buildLinux (args // rec {
version = "4.14.151";
version = "4.14.152";
# 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/v4.x/linux-${version}.tar.xz";
sha256 = "1bizb1wwni5r4m5i0mrsqbc5qw73lwrfrdadm09vbfz9ir19qlgz";
sha256 = "1amhwbdg7rki9i2q7mqp4vg5rzi8snps5rx891xy1aj1sgcry8x9";
};
} // (args.argsOverride or {}))