nixpkgs/pkgs/os-specific/linux/kernel/linux-lqx.nix

27 lines
640 B
Nix
Raw Normal View History

{ lib, fetchFromGitHub, buildLinux, linux_zen, ... } @ args:
let
2021-09-09 17:49:31 +02:00
version = "5.13.15";
2021-08-10 20:36:58 +02:00
suffix = "lqx1";
in
buildLinux (args // {
modDirVersion = "${version}-${suffix}";
inherit version;
isZen = true;
src = fetchFromGitHub {
owner = "zen-kernel";
repo = "zen-kernel";
rev = "v${version}-${suffix}";
2021-09-09 17:49:31 +02:00
sha256 = "sha256-YDdBOB49NkX2V+lA7JeKRXfpo81/MSoLDOsPjphhBJA=";
};
extraMeta = {
2021-08-10 20:36:58 +02:00
branch = "5.13/master";
2021-01-15 15:45:37 +01:00
maintainers = with lib.maintainers; [ atemu ];
2020-12-26 13:31:48 +01:00
description = linux_zen.meta.description + " (Same as linux_zen but less aggressive release schedule)";
};
2021-06-08 16:22:28 +02:00
} // (args.argsOverride or { }))