1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-04 19:45:54 +00:00
nixpkgs/pkgs/os-specific/linux/kernel/linux-4.14.nix

16 lines
470 B
Nix
Raw Normal View History

2017-10-28 20:09:54 +01:00
{ stdenv, buildPackages, hostPlatform, fetchurl, perl, buildLinux, ... } @ args:
2017-11-13 13:34:36 +00:00
with stdenv.lib;
buildLinux (args // rec {
2018-03-22 00:42:33 +00:00
version = "4.14.29";
2017-11-13 13:34:36 +00:00
# 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";
2018-03-22 00:42:33 +00:00
sha256 = "06a6q69jwvggns5rf473nfgfwlkfyj8zs6vrjppwf8lrrrq7pxhq";
2017-11-13 13:34:36 +00:00
};
} // (args.argsOverride or {}))