14 lines
424 B
Nix
14 lines
424 B
Nix
{ buildPackages, fetchurl, perl, buildLinux, nixosTests, ... } @ args:
|
|
|
|
buildLinux (args // rec {
|
|
version = "4.9.266";
|
|
extraMeta.branch = "4.9";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz";
|
|
sha256 = "0qzigcslfp714vaswwlw93xj0h2f8laikppw6krrhfnh5wwrp5dr";
|
|
};
|
|
|
|
kernelTests = args.kernelTests or [ nixosTests.kernel-generic.linux_4_9 ];
|
|
} // (args.argsOverride or {}))
|