27 lines
654 B
Nix
27 lines
654 B
Nix
{ lib, fetchFromGitHub, buildLinux, ... } @ args:
|
|
|
|
let
|
|
version = "5.11.16";
|
|
suffix = "zen1";
|
|
in
|
|
|
|
buildLinux (args // {
|
|
modDirVersion = "${version}-${suffix}";
|
|
inherit version;
|
|
isZen = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "zen-kernel";
|
|
repo = "zen-kernel";
|
|
rev = "v${version}-${suffix}";
|
|
sha256 = "0jyicnpqccn194jrm1mc4zq0cil7ls9l57ws3nv783vlk7b0k3gv";
|
|
};
|
|
|
|
extraMeta = {
|
|
branch = "5.10/master";
|
|
maintainers = with lib.maintainers; [ atemu andresilva ];
|
|
description = "Built using the best configuration and kernel sources for desktop, multimedia, and gaming workloads.";
|
|
};
|
|
|
|
} // (args.argsOverride or {}))
|