36 lines
961 B
Nix
36 lines
961 B
Nix
{ lib, fetchFromGitHub, buildLinux, ... } @ args:
|
|
|
|
let
|
|
# having the full version string here makes it easier to update
|
|
modDirVersion = "5.15.2-zen1";
|
|
parts = lib.splitString "-" modDirVersion;
|
|
version = lib.elemAt parts 0;
|
|
suffix = lib.elemAt parts 1;
|
|
|
|
numbers = lib.splitString "." version;
|
|
branch = "${lib.elemAt numbers 0}.${lib.elemAt numbers 1}";
|
|
in
|
|
|
|
buildLinux (args // {
|
|
inherit version modDirVersion;
|
|
isZen = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "zen-kernel";
|
|
repo = "zen-kernel";
|
|
rev = "v${modDirVersion}";
|
|
sha256 = "sha256-6cYKlRAd8kbphIThmTdWieH322Rj1KSmCJCmYRt8o2w=";
|
|
};
|
|
|
|
structuredExtraConfig = with lib.kernel; {
|
|
ZEN_INTERACTIVE = yes;
|
|
};
|
|
|
|
extraMeta = {
|
|
inherit branch;
|
|
maintainers = with lib.maintainers; [ atemu andresilva ];
|
|
description = "Built using the best configuration and kernel sources for desktop, multimedia, and gaming workloads.";
|
|
};
|
|
|
|
} // (args.argsOverride or { }))
|