1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-04 19:45:54 +00:00
nixpkgs/pkgs/os-specific/linux/kernel/linux-4.9.nix

12 lines
355 B
Nix
Raw Normal View History

2017-10-28 20:09:54 +01:00
{ stdenv, buildPackages, hostPlatform, fetchurl, perl, buildLinux, ... } @ args:
2016-12-12 00:33:05 +00:00
buildLinux (args // rec {
2018-04-21 01:34:46 +01:00
version = "4.9.95";
2016-12-12 00:33:05 +00:00
extraMeta.branch = "4.9";
src = fetchurl {
url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz";
2018-04-21 01:34:46 +01:00
sha256 = "1x4z66v6zl4q0hzinzb1wvlq9fd3v4sbwj9lay69f3vdq8knsnly";
2016-12-12 00:33:05 +00:00
};
} // (args.argsOverride or {}))