Unverified Commit 3dcf767f authored by Ryan Lahfa's avatar Ryan Lahfa Committed by GitHub
Browse files

Merge pull request #229708 from Tom-Hubrecht/latexindent

perlPackages.LatexIndent: init at 3.21
parents 9fa867e2 7c8e8c24
Loading
Loading
Loading
Loading
+26 −0
Original line number Diff line number Diff line
@@ -12935,6 +12935,32 @@ with self; {
    };
  };
  LatexIndent = buildPerlPackage rec {
    pname = "latexindent.pl";
    version = "3.21";
    src = fetchFromGitHub {
      owner = "cmhughes";
      repo = pname;
      rev = "V${version}";
      hash = "sha256-STXHOzsshyN7rc2VtJxxt6La4UPGpRYlMO8TX1Jd7pM=";
    };
    outputs = [ "out" ];
    propagatedBuildInputs = [ FileHomeDir YAMLTiny ];
    preBuild = ''
      patchShebangs ./latexindent.pl
    '';
    meta = {
      description = "Perl script to add indentation to LaTeX files";
      homepage = "https://github.com/cmhughes/latexindent.pl";
      license = lib.licenses.gpl3Plus;
    };
  };
  LaTeXML = buildPerlPackage rec {
    pname = "LaTeXML";
    version = "0.8.7";