Apparently fix texinfo5 with fresh TeXLive
This commit is contained in:
parent
cb82eaffb8
commit
be5b32e798
|
@ -14,10 +14,10 @@ stdenv.mkDerivation {
|
||||||
sourceRoot = ".";
|
sourceRoot = ".";
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
mkdir -p $out/texmf/fonts/opentype
|
mkdir -p $out/texmf-dist/fonts/opentype
|
||||||
mkdir -p $out/share/fonts/opentype
|
mkdir -p $out/share/fonts/opentype
|
||||||
|
|
||||||
cp *.{OTF,otf} $out/texmf/fonts/opentype/lmmath-regular.otf
|
cp *.{OTF,otf} $out/texmf-dist/fonts/opentype/lmmath-regular.otf
|
||||||
cp *.{OTF,otf} $out/share/fonts/opentype/lmmath-regular.otf
|
cp *.{OTF,otf} $out/share/fonts/opentype/lmmath-regular.otf
|
||||||
|
|
||||||
ln -s $out/texmf* $out/share/
|
ln -s $out/texmf* $out/share/
|
||||||
|
|
|
@ -11,7 +11,7 @@ stdenv.mkDerivation rec {
|
||||||
buildInputs = [ ncurses perl ];
|
buildInputs = [ ncurses perl ];
|
||||||
|
|
||||||
preInstall = ''
|
preInstall = ''
|
||||||
installFlags="TEXMF=$out/texmf";
|
installFlags="TEXMF=$out/texmf-dist";
|
||||||
installTargets="install install-tex";
|
installTargets="install install-tex";
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
|
|
@ -24,7 +24,7 @@ stdenv.mkDerivation rec {
|
||||||
for f in src/tex4ht src/t4ht src/htcmd "bin/unix/"*; do
|
for f in src/tex4ht src/t4ht src/htcmd "bin/unix/"*; do
|
||||||
mv $f $out/bin/
|
mv $f $out/bin/
|
||||||
done
|
done
|
||||||
mv texmf $out/
|
mv texmf $out/texmf-dist
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
|
|
Loading…
Reference in New Issue