3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/os-specific/linux/kernel/linux-4.9.nix

13 lines
393 B
Nix
Raw Normal View History

{ buildPackages, fetchurl, perl, buildLinux, nixosTests, stdenv, ... } @ args:
2016-12-12 00:33:05 +00:00
buildLinux (args // rec {
2022-03-12 07:19:22 +00:00
version = "4.9.306";
2016-12-12 00:33:05 +00:00
extraMeta.branch = "4.9";
extraMeta.broken = stdenv.isAarch64;
2016-12-12 00:33:05 +00:00
src = fetchurl {
url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz";
2022-03-12 07:19:22 +00:00
sha256 = "1cvsz3sf24g2623m7fxc6ilzsdmzi8s8lnks3sg68sax0qdx0ny7";
2016-12-12 00:33:05 +00:00
};
} // (args.argsOverride or {}))