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

19 lines
705 B
Nix
Raw Normal View History

2018-12-24 18:32:55 +01:00
{ stdenv, buildPackages, fetchurl, perl, buildLinux, modDirVersionArg ? null, ... } @ args:
with stdenv.lib;
buildLinux (args // rec {
2019-02-27 19:34:15 +01:00
version = "4.20.13";
2018-12-24 18:32:55 +01:00
# 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;
# 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";
2019-02-27 19:34:15 +01:00
sha256 = "1h8axf8wg3g87kjaan2241zq83n5p5769anmc3i8mrm4y2saswqf";
2018-12-24 18:32:55 +01:00
};
} // (args.argsOverride or {}))