Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 10 additions & 7 deletions nix/tools.nix
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@
, stylua
, tagref
, taplo
, texlive
, texliveSmall
, # Added in nixpkgs on Dec 2, 2022
topiary ? placeholder "topiary"
, treefmt
Expand All @@ -124,9 +124,11 @@
}:

let
tex = texlive.combine {
inherit (texlive) latexindent chktex scheme-basic;
};
tex = texliveSmall.withPackages (ps: [
ps.latexindent
ps.chktex
ps.scheme-basic
]);
in
{
air = air-formatter;
Expand Down Expand Up @@ -272,9 +274,10 @@ in
inherit (pkgsBuildBuild) ocaml;
};
latexindent = tex;
lacheck = texlive.combine {
inherit (texlive) lacheck scheme-basic;
};
lacheck = texliveSmall.withPackages (ps: [
ps.lacheck
ps.scheme-basic
]);
chktex = tex;
commitizen = commitizen.overrideAttrs (_: _: { doCheck = false; });
bats =
Expand Down