Unverified Commit 3728d82e authored by Franz Pletz's avatar Franz Pletz Committed by GitHub
Browse files

tex-fmt: init at 0.4.3 (#341818)

parents 904a74f2 86df9cf1
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -22611,6 +22611,12 @@
    githubId = 24979302;
    name = "Vladimír Zahradník";
  };
  wgunderwood = {
    email = "wg.underwood13@gmail.com";
    github = "WGUNDERWOOD";
    githubId = 42812654;
    name = "William Underwood";
  };
  wheelsandmetal = {
    email = "jakob@schmutz.co.uk";
    github = "wheelsandmetal";
+27 −0
Original line number Diff line number Diff line
{
  lib,
  fetchFromGitHub,
  rustPlatform,
}:

rustPlatform.buildRustPackage rec {
  pname = "tex-fmt";
  version = "0.4.3";

  src = fetchFromGitHub {
    owner = "WGUNDERWOOD";
    repo = "tex-fmt";
    rev = "refs/tags/v${version}";
    hash = "sha256-Atq/eyvdAuaUEeYDIC5D9icD44mcvuhsyuctYAPrBSU=";
  };

  cargoHash = "sha256-ShF2Z5Od/pgsNRM6WmxxFeE67pYZin1q4RR6nVmbrsA=";

  meta = {
    description = "LaTeX formatter written in Rust";
    homepage = "https://github.com/WGUNDERWOOD/tex-fmt";
    license = lib.licenses.mit;
    mainProgram = "tex-fmt";
    maintainers = with lib.maintainers; [ wgunderwood ];
  };
}