776adb5704
Kept the old hacks where they don't break the build in case they things they fix are still relevant. I checked that the upgrade doesn't break: 1) Asymptote and EProver builds. 2) My XeLaTeX demo from configurations/ repository. 3) Some of my own files. The upgrade fixes problems with simultaneous use of 3D and LaTeX labels in Asymptote. Please provide a test that worked previously and is broken now if you need to revert this update or its parts.
25 lines
461 B
Nix
25 lines
461 B
Nix
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "tipa-1.3";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://debian/pool/main/t/tipa/tipa_1.3.orig.tar.gz";
|
|
sha256 = "1q1sisxdcd2zd9b7mnagr2mxf9v3n1r4s5892zx5ly4r0niyya9m";
|
|
};
|
|
|
|
installPhase = ''
|
|
export PREFIX="$out/texmf-dist"
|
|
mkdir -p "$PREFIX" "$out/share"
|
|
make install PREFIX="$PREFIX"
|
|
|
|
ln -s $out/texmf* $out/share/
|
|
'';
|
|
|
|
meta = {
|
|
description = "Phonetic font for TeX";
|
|
};
|
|
}
|
|
|
|
|