nixpkgs-suyu/pkgs/os-specific/linux/kernel/linux-zen.nix

27 lines
654 B
Nix
Raw Normal View History

{ lib, fetchFromGitHub, buildLinux, ... } @ args:
2020-07-27 18:31:44 +02:00
let
version = "5.10.10";
suffix = "zen1";
2020-07-27 18:31:44 +02:00
in
buildLinux (args // {
modDirVersion = "${version}-${suffix}";
2020-07-27 18:31:44 +02:00
inherit version;
2020-10-29 09:15:05 +01:00
isZen = true;
2020-07-27 18:31:44 +02:00
src = fetchFromGitHub {
owner = "zen-kernel";
repo = "zen-kernel";
rev = "v${version}-${suffix}";
sha256 = "0jsi2q8k1w5zs5l6z1brm2mxpl9arv6n6linc8yj6xc75nydw6w4";
2020-07-27 18:31:44 +02:00
};
extraMeta = {
2020-12-16 06:06:46 +01:00
branch = "5.10/master";
2021-01-15 15:45:37 +01:00
maintainers = with lib.maintainers; [ atemu andresilva ];
description = "Built using the best configuration and kernel sources for desktop, multimedia, and gaming workloads.";
2020-07-27 18:31:44 +02:00
};
} // (args.argsOverride or {}))