Merge pull request #229708 from Tom-Hubrecht/latexindent

perlPackages.LatexIndent: init at 3.21

authored by Ryan Lahfa and committed by GitHub 3dcf767f 9fa867e2

+26
+26
pkgs/top-level/perl-packages.nix
··· 12935 12935 }; 12936 12936 }; 12937 12937 12938 + LatexIndent = buildPerlPackage rec { 12939 + pname = "latexindent.pl"; 12940 + version = "3.21"; 12941 + 12942 + src = fetchFromGitHub { 12943 + owner = "cmhughes"; 12944 + repo = pname; 12945 + rev = "V${version}"; 12946 + hash = "sha256-STXHOzsshyN7rc2VtJxxt6La4UPGpRYlMO8TX1Jd7pM="; 12947 + }; 12948 + 12949 + outputs = [ "out" ]; 12950 + 12951 + propagatedBuildInputs = [ FileHomeDir YAMLTiny ]; 12952 + 12953 + preBuild = '' 12954 + patchShebangs ./latexindent.pl 12955 + ''; 12956 + 12957 + meta = { 12958 + description = "Perl script to add indentation to LaTeX files"; 12959 + homepage = "https://github.com/cmhughes/latexindent.pl"; 12960 + license = lib.licenses.gpl3Plus; 12961 + }; 12962 + }; 12963 + 12938 12964 LaTeXML = buildPerlPackage rec { 12939 12965 pname = "LaTeXML"; 12940 12966 version = "0.8.7";