tex-fmt 0.2.1

LaTeX formatter written in Rust
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{pkgs ? import <nixpkgs> {}}:
pkgs.mkShell {
  inputsFrom = [(pkgs.callPackage ./default.nix {})];
  buildInputs = with pkgs; [
    rustfmt
    clippy
    cargo-flamegraph
    cacert
    hyperfine
    texlive.combined.scheme-full
    diff-so-fancy
    poppler_utils
  ];
}