nixpkgs/pkgs/os-specific/linux/kernel/linux-4.9.nix
Atemu d4afb73971 kernels: remove manually declared kernelTests
It is not necessary to declare these manually anymore
2021-08-23 19:58:55 +02:00

13 lines
393 B
Nix

{ buildPackages, fetchurl, perl, buildLinux, nixosTests, stdenv, ... } @ args:
buildLinux (args // rec {
version = "4.9.280";
extraMeta.branch = "4.9";
extraMeta.broken = stdenv.isAarch64;
src = fetchurl {
url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz";
sha256 = "0am9qg9j18j4fc5zi6bk1g0mi8dp31pl62wlihxhhkc5yspzrna3";
};
} // (args.argsOverride or {}))