3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/os-specific/linux/kernel/linux-4.14.nix

19 lines
655 B
Nix
Raw Normal View History

2021-04-07 17:14:04 +01:00
{ lib, buildPackages, fetchurl, perl, buildLinux, nixosTests, modDirVersionArg ? null, ... } @ args:
2017-11-13 13:34:36 +00:00
2021-01-15 14:45:37 +00:00
with lib;
2017-11-13 13:34:36 +00:00
buildLinux (args // rec {
2021-12-09 06:28:43 +00:00
version = "4.14.257";
2017-11-13 13:34:36 +00:00
# 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;
2017-11-13 13:34:36 +00:00
# branchVersion needs to be x.y
extraMeta.branch = versions.majorMinor version;
2017-11-13 13:34:36 +00:00
src = fetchurl {
url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz";
2021-12-09 06:28:43 +00:00
sha256 = "0jnw02jphvm9zcviwwymxyhq8kd0bk0v1827ninnv6bdy3140izv";
2017-11-13 13:34:36 +00:00
};
} // (args.argsOverride or {}))