My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nomicon/pkgs/os-specific/linux/kernel/linux-4.9.nix

14 lines
424 B

{ buildPackages, fetchurl, perl, buildLinux, nixosTests, ... } @ args:
8 years ago
buildLinux (args // rec {
version = "4.9.268";
8 years ago
extraMeta.branch = "4.9";
src = fetchurl {
url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz";
sha256 = "0aknrlf5q0dsqib8c9klmf5c60dy7hg2zksb020qvyrp077gcrjv";
8 years ago
};
kernelTests = args.kernelTests or [ nixosTests.kernel-generic.linux_4_9 ];
8 years ago
} // (args.argsOverride or {}))