haskell-pandoc: install man pages
This commit is contained in:
parent
62d691b4ca
commit
d2496ba142
1 changed files with 7 additions and 1 deletions
|
@ -676,7 +676,13 @@ self: super: {
|
|||
test-sandbox-compose = dontCheck super.test-sandbox-compose;
|
||||
|
||||
# https://github.com/jgm/pandoc/issues/2190
|
||||
pandoc = disableSharedExecutables super.pandoc;
|
||||
pandoc = overrideCabal super.pandoc (drv: {
|
||||
enableSharedExecutables = false;
|
||||
postInstall = '' # install man pages
|
||||
mv man $out/
|
||||
find $out/man -type f ! -name "*.[0-9]" -exec rm {} +
|
||||
'';
|
||||
});
|
||||
|
||||
# Broken by GLUT update.
|
||||
Monadius = markBroken super.Monadius;
|
||||
|
|
Loading…
Reference in a new issue