Files
nixpkgs/pkgs/os-specific/linux/kernel/linux-zen.nix
T
Atemu 261e8c7b98 zen-kernels: 5.12.9 -> 5.12.14
(cherry picked from commit 6733b6fb0569762d4fe7204613224545d54a55c8)
2021-07-07 10:41:19 +00:00

27 lines
654 B
Nix

{ lib, fetchFromGitHub, buildLinux, ... } @ args:
let
version = "5.12.14";
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 = "sha256-xmU2HNigSMb+xGkQ9XShBKfRxVHPHsz88JoTI2KsShQ=";
};
extraMeta = {
branch = "5.12/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 { }))