perlPackages.LatexIndent: init at 3.21

This commit is contained in:
Tom Hubrecht 2023-05-03 10:44:59 +02:00
parent 71818cc96d
commit 7c8e8c2498

View file

@ -12904,6 +12904,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";