more more fixes

This commit is contained in:
LavaDesu 2021-06-28 14:11:15 +07:00
parent fdae40c7ef
commit 49eec3c149
Signed by: cilly
GPG key ID: 6500251E087653C9

View file

@ -309,12 +309,12 @@ let
inherit name;
patch = "${sources.tkg}/linux-tkg-patches/${version}/${name}.patch";
};
tkgPatches = builtins.map (e: toPatch e) (lib.naturalSort patchNames);
tkgPatches = builtins.map (e: toPatch e) patchNames;
suffix = if builtins.stringLength localVersion != 0 then "-tkg-${localVersion}" else "-tkg";
in buildLinux(args // rec {
version = "${sources.fullVersion}-tkg";
modDirVersion = version + suffix;
version = sources.fullVersion + suffix;
modDirVersion = version;
isZen = zenify;