16 lines
470 B
Nix
16 lines
470 B
Nix
{ stdenv, buildPackages, hostPlatform, fetchurl, perl, buildLinux, ... } @ args:
|
|
|
|
with stdenv.lib;
|
|
|
|
buildLinux (args // rec {
|
|
version = "4.14.21";
|
|
|
|
# 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";
|
|
sha256 = "1vda6l61755wjbqjz3xbdkhgzzvd8lhnlliga3chfprxq348kpqr";
|
|
};
|
|
} // (args.argsOverride or {}))
|