I attempted to install via cabal install lhs2tex, which resulted in the install process silently hanging. Digging through the output of cabal install -v and inspecting the logs revealed the issue: the package had built successfully, but the custom setup script was attempting to build the manual, and LaTeX had frozen awaiting user input as I was missing some files from my TeXLive distribution.
The immediate solution to my problem was apt install texlive-science, but ideally the custom setup would not hang forever (e.g. using -interaction=nonstopmode).
I attempted to install via
cabal install lhs2tex, which resulted in the install process silently hanging. Digging through the output ofcabal install -vand inspecting the logs revealed the issue: the package had built successfully, but the custom setup script was attempting to build the manual, and LaTeX had frozen awaiting user input as I was missing some files from my TeXLive distribution.The immediate solution to my problem was
apt install texlive-science, but ideally the custom setup would not hang forever (e.g. using-interaction=nonstopmode).