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 09:31:44 -07:00
let
2021-04-25 03:19:02 -07:00
version = "5.11.16";
2021-02-23 11:56:35 -08:00
suffix = "zen1";
2020-07-27 09:31:44 -07:00
in
buildLinux (args // {
modDirVersion = "${version}-${suffix}";
2020-07-27 09:31:44 -07:00
inherit version;
2020-10-29 01:15:05 -07:00
isZen = true;
2020-07-27 09:31:44 -07:00
src = fetchFromGitHub {
owner = "zen-kernel";
repo = "zen-kernel";
rev = "v${version}-${suffix}";
2021-04-25 03:19:02 -07:00
sha256 = "0jyicnpqccn194jrm1mc4zq0cil7ls9l57ws3nv783vlk7b0k3gv";
2020-07-27 09:31:44 -07:00
};
extraMeta = {
2020-12-15 21:06:46 -08:00
branch = "5.10/master";
2021-01-15 06:45:37 -08: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 09:31:44 -07:00
};
} // (args.argsOverride or {}))