nixpkgs/pkgs/os-specific/linux/kernel/linux-4.15.nix

19 lines
637 B
Nix
Raw Normal View History

2018-01-29 17:41:02 +01:00
{ stdenv, buildPackages, hostPlatform, fetchurl, perl, buildLinux, ... } @ args:
with stdenv.lib;
buildLinux (args // rec {
2018-03-25 21:04:02 +02:00
version = "4.15.13";
2018-01-29 17:41:02 +01:00
# modDirVersion needs to be x.y.z, will automatically add .0 if needed
modDirVersion = concatStrings (intersperse "." (take 3 (splitString "." "${version}.0")));
# 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-25 21:04:02 +02:00
sha256 = "1iam2adh6ghzv0lgh60c03pzrhv4axxw6k78xh209v889xdfjbhx";
2018-01-29 17:41:02 +01:00
};
} // (args.argsOverride or {}))