perlPackages.LatexIndent: init at 3.21
This commit is contained in:
parent
71818cc96d
commit
7c8e8c2498
1 changed files with 26 additions and 0 deletions
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue