nixpkgs/pkgs/os-specific/linux/kernel/linux-zen.nix
2021-01-10 15:08:53 -08:00

26 lines
634 B
Nix

{ stdenv, fetchFromGitHub, buildLinux, ... } @ args:
let
version = "5.10.6";
in
buildLinux (args // {
modDirVersion = "${version}-zen1";
inherit version;
isZen = true;
src = fetchFromGitHub {
owner = "zen-kernel";
repo = "zen-kernel";
rev = "v${version}-zen1";
sha256 = "0asn4ysnzv845g35ca9sdi89sc7clcc88xmx64pcxmh033civ5fw";
};
extraMeta = {
branch = "5.10/master";
maintainers = with stdenv.lib.maintainers; [ atemu andresilva ];
description = "Built using the best configuration and kernel sources for desktop, multimedia, and gaming workloads.";
};
} // (args.argsOverride or {}))