linuxPackages_zen: 5.13.9 -> 5.13.10-zen1

(cherry picked from commit 27edf4ccb48ca48375064d5fc964b8ad9b7c0578)
This commit is contained in:
Jörg Thalheim 2021-08-13 09:48:40 +02:00 committed by github-actions[bot]
parent 219a77ea26
commit 5264329acd

View File

@ -1,20 +1,25 @@
{ lib, fetchFromGitHub, buildLinux, ... } @ args:
let
version = "5.13.9";
suffix = "zen1";
# having the full version string here makes it easier to update
modDirVersion = "5.13.10-zen1";
parts = lib.splitString "-" modDirVersion;
version = lib.elemAt parts 0;
suffix = lib.elemAt parts 1;
numbers = lib.splitString "." version;
branch = "${lib.elemAt numbers 0}.${lib.elemAt numbers 1}";
in
buildLinux (args // {
modDirVersion = "${version}-${suffix}";
inherit version;
inherit version modDirVersion;
isZen = true;
src = fetchFromGitHub {
owner = "zen-kernel";
repo = "zen-kernel";
rev = "v${version}-${suffix}";
sha256 = "sha256-RuY6ZIIKU56R+IGMtQDV6mIubGDqonRpsIdlrpAHFXM=";
rev = "v${modDirVersion}";
sha256 = "sha256-0QNRWKB7tAWZR3wuKJf+es6WqjScSKnDrMwH74o2oOA=";
};
structuredExtraConfig = with lib.kernel; {
@ -22,7 +27,7 @@ buildLinux (args // {
};
extraMeta = {
branch = "5.13";
inherit branch;
maintainers = with lib.maintainers; [ atemu andresilva ];
description = "Built using the best configuration and kernel sources for desktop, multimedia, and gaming workloads.";
};