From 49eec3c14930ad4445b18225b2491f16ce8e4b92 Mon Sep 17 00:00:00 2001 From: LavaDesu Date: Mon, 28 Jun 2021 14:11:15 +0700 Subject: [PATCH] more more fixes --- packages/linux-tkg/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/linux-tkg/default.nix b/packages/linux-tkg/default.nix index 96e23cf..28a1753 100644 --- a/packages/linux-tkg/default.nix +++ b/packages/linux-tkg/default.nix @@ -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;