summary refs log blame commit diff
path: root/pkgs/os-specific/linux/kernel/linux-zen.nix
blob: 92aaa9574580af76e68da853f2c2d2920f52e82b (plain) (tree)
1
2
3
4
5
6
7
8
9
                                                 

   
                      
                  


                     
                                         
                  
               



                         
                                  
                                                                    


               
                           
                                                             
                                                                                                                         


                               
{ lib, fetchFromGitHub, buildLinux, ... } @ args:

let
  version = "5.11.15";
  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 = "0n9wm0lpwkqd79112k03lxp4hc898nvs2jjw3hxzggn5wk4i2dz9";
  };

  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 {}))