3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #12767 from abbradar/asymptote-fixes

Asymptote fixes
This commit is contained in:
Peter Simons 2016-02-04 22:16:40 +01:00
commit 770ba80479

View file

@ -1,6 +1,6 @@
{stdenv, fetchurl
, freeglut, ghostscriptX, imagemagick, fftw
, boehmgc, mesa, ncurses, readline, gsl, libsigsegv
, boehmgc, mesa_glu, mesa_noglu, ncurses, readline, gsl, libsigsegv
, python, zlib, perl, texLive, texinfo, xz
}:
let
@ -15,30 +15,39 @@ let
};
buildInputs = [
freeglut ghostscriptX imagemagick fftw
boehmgc mesa ncurses readline gsl libsigsegv
boehmgc mesa_glu mesa_noglu mesa_noglu.osmesa ncurses readline gsl libsigsegv
python zlib perl texLive texinfo xz
];
in
stdenv.mkDerivation {
inherit (s) name version;
inherit buildInputs;
src = fetchurl {
inherit (s) url sha256;
};
preConfigure = ''
export HOME="$PWD"
patchShebangs .
sed -e 's@epswrite@eps2write@g' -i runlabel.in
xz -d < ${texinfo.src} | tar --wildcards -x texinfo-'*'/doc/texinfo.tex
cp texinfo-*/doc/texinfo.tex doc/
export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -I${boehmgc}/include/gc"
rm *.tar.gz
configureFlags="$configureFlags --with-latex=$out/share/texmf/tex/latex --with-context=$out/share/texmf/tex/context/third"
'';
NIX_CFLAGS_COMPILE = [ "-I${boehmgc}/include/gc" ];
postInstall = ''
mv -v "$out/share/info/asymptote/"*.info $out/share/info/
sed -i -e 's|(asymptote/asymptote)|(asymptote)|' $out/share/info/asymptote.info
rmdir $out/share/info/asymptote
rm $out/share/info/dir
'';
enableParallelBuilding = true;
meta = {
inherit (s) version;
description = "A tool for programming graphics intended to replace Metapost";