1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/os-specific/linux/kernel/linux-4.19.nix

18 lines
555 B
Nix
Raw Normal View History

2018-10-22 14:40:14 +01:00
{ stdenv, buildPackages, fetchurl, perl, buildLinux, modDirVersionArg ? null, ... } @ args:
with stdenv.lib;
buildLinux (args // rec {
2019-04-06 17:52:04 +01:00
version = "4.19.34";
2018-10-22 14:40:14 +01:00
# modDirVersion needs to be x.y.z, will automatically add .0 if needed
# 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-04-06 17:52:04 +01:00
sha256 = "1k5qhyh7nwfs5pkbrjpxyj6w17424qcmmd9v7jqfbgnx3wm5wyfx";
2018-10-22 14:40:14 +01:00
};
} // (args.argsOverride or {}))