forked from mirrors/nixpkgs
26 lines
632 B
Nix
26 lines
632 B
Nix
{ lib, 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 lib.maintainers; [ atemu andresilva ];
|
|
description = "Built using the best configuration and kernel sources for desktop, multimedia, and gaming workloads.";
|
|
};
|
|
|
|
} // (args.argsOverride or {}))
|