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-zen.nix

24 lines
484 B

{ stdenv, fetchFromGitHub, buildLinux, ... } @ args:
let
version = "5.8.13";
in
buildLinux (args // {
modDirVersion = "${version}-zen1";
inherit version;
src = fetchFromGitHub {
owner = "zen-kernel";
repo = "zen-kernel";
rev = "v${version}-zen1";
sha256 = "161bvrmic7gspkgkv0pqssk6dzv95vkxld69rir968khwlnpsnim";
};
extraMeta = {
branch = "5.8/master";
maintainers = with stdenv.lib.maintainers; [ atemu ];
};
} // (args.argsOverride or {}))