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

12 lines
365 B

{ stdenv, buildPackages, hostPlatform, fetchurl, perl, buildLinux, ... } @ args:
8 years ago
import ./generic.nix (args // rec {
version = "4.9.80";
8 years ago
extraMeta.branch = "4.9";
src = fetchurl {
url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz";
sha256 = "0ys74q9f93c42flqracaqnkh0qwcbnimhppd80rz5hxgq3686bly";
8 years ago
};
} // (args.argsOverride or {}))