nixpkgs/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
2021-04-25 12:19:02 +02:00
version = "5.11.16";
2021-02-23 20:56:35 +01:00
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}";
2021-04-25 12:19:02 +02:00
sha256 = "0jyicnpqccn194jrm1mc4zq0cil7ls9l57ws3nv783vlk7b0k3gv";
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 {}))