Files
nixpkgs/pkgs/os-specific/linux/kernel/linux-4.9.nix
T
TredwellGit 50e3d6910d linux: 4.9.284 -> 4.9.285
(cherry picked from commit e7e463220d2cd24d786be0f96c4e67c27577c0a3)
2021-10-07 22:04:17 +00:00

15 lines
471 B
Nix

{ buildPackages, fetchurl, perl, buildLinux, nixosTests, stdenv, ... } @ args:
buildLinux (args // rec {
version = "4.9.285";
extraMeta.branch = "4.9";
extraMeta.broken = stdenv.isAarch64;
src = fetchurl {
url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz";
sha256 = "1hkkk4mhr5qnrhwqcz0b20rff6j8pnwd868a5hsq8s867pa24ajb";
};
kernelTests = args.kernelTests or [ nixosTests.kernel-generic.linux_4_9 ];
} // (args.argsOverride or {}))