From 59661dafb04b95b4e6d5933bfa2332949de46bbe Mon Sep 17 00:00:00 2001 From: Vincenzo Mantova <1962985+xworld21@users.noreply.github.com> Date: Sat, 11 Mar 2023 20:57:16 +0000 Subject: [PATCH] texlive.combine: remove lib.unique in generating language and format configuration --- pkgs/tools/typesetting/tex/texlive/combine.nix | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/pkgs/tools/typesetting/tex/texlive/combine.nix b/pkgs/tools/typesetting/tex/texlive/combine.nix index 96729028a0d4..5ed6500654a5 100644 --- a/pkgs/tools/typesetting/tex/texlive/combine.nix +++ b/pkgs/tools/typesetting/tex/texlive/combine.nix @@ -33,8 +33,6 @@ let ++ lib.optional (lib.any pkgNeedsRuby splitBin.wrong) ruby; }; - sortedUniqueStrings = list: lib.sort (a: b: a < b) (lib.unique list); - name = "texlive-${extraName}-${bin.texliveYear}${extraVersion}"; texmf = (buildEnv { @@ -123,9 +121,9 @@ in (buildEnv { # now filter hyphenation patterns and formats (let hyphens = lib.filter (p: p.hasHyphens or false && p.tlType == "run") pkgList.splitBin.wrong; - hyphenPNames = sortedUniqueStrings (map (p: p.pname) hyphens); + hyphenPNames = lib.sort (a: b: a < b) (map (p: p.pname) hyphens); formats = lib.filter (p: p.hasFormats or false && p.tlType == "run") pkgList.splitBin.wrong; - formatPNames = sortedUniqueStrings (map (p: p.pname) formats); + formatPNames = lib.sort (a: b: a < b) (map (p: p.pname) formats); # sed expression that prints the lines in /start/,/end/ except for /end/ section = start: end: "/${start}/,/${end}/{ /${start}/p; /${end}/!p; };\n"; script =