nixpkgs/pkgs/os-specific/linux/kernel/linux-zen.nix
Atemu 500908d7f0 zen-kernels: 5.10.9 -> 5.10.10
lqx2's parent is the same commit as zen1's
2021-01-25 18:32:25 +01:00

27 lines
662 B
Nix

{ lib, stdenv, fetchFromGitHub, buildLinux, ... } @ args:
let
version = "5.10.10";
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 = "0jsi2q8k1w5zs5l6z1brm2mxpl9arv6n6linc8yj6xc75nydw6w4";
};
extraMeta = {
branch = "5.10/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 {}))