2015-02-09 21:27:51 +00:00
|
|
|
{stdenv, fetchurl
|
|
|
|
, freeglut, ghostscriptX, imagemagick, fftw
|
2016-02-02 14:18:41 +00:00
|
|
|
, boehmgc, mesa_glu, mesa_noglu, ncurses, readline, gsl, libsigsegv
|
2015-02-09 21:27:51 +00:00
|
|
|
, python, zlib, perl, texLive, texinfo, xz
|
2017-02-06 19:05:55 +00:00
|
|
|
, darwin
|
2015-02-09 21:27:51 +00:00
|
|
|
}:
|
2016-02-05 18:09:01 +00:00
|
|
|
|
2012-09-20 13:35:30 +01:00
|
|
|
let
|
2012-12-04 06:33:37 +00:00
|
|
|
s = # Generated upstream information
|
|
|
|
rec {
|
|
|
|
baseName="asymptote";
|
2017-04-20 20:55:52 +01:00
|
|
|
version="2.41";
|
2014-05-27 22:33:15 +01:00
|
|
|
name="${baseName}-${version}";
|
2017-04-20 20:55:52 +01:00
|
|
|
hash="1w7fbq6gy65g0mxg6wdxi7v178c5yxvh9yrnv3bzm4sjzf4pwvhx";
|
|
|
|
url="https://freefr.dl.sourceforge.net/project/asymptote/2.41/asymptote-2.41.src.tgz";
|
|
|
|
sha256="1w7fbq6gy65g0mxg6wdxi7v178c5yxvh9yrnv3bzm4sjzf4pwvhx";
|
2012-12-04 06:33:37 +00:00
|
|
|
};
|
2015-02-09 21:27:51 +00:00
|
|
|
buildInputs = [
|
2016-10-02 21:55:56 +01:00
|
|
|
ghostscriptX imagemagick fftw
|
|
|
|
boehmgc ncurses readline gsl libsigsegv
|
|
|
|
python zlib perl texLive texinfo xz ]
|
|
|
|
++ stdenv.lib.optionals stdenv.isLinux
|
|
|
|
[ freeglut mesa_glu mesa_noglu mesa_noglu.osmesa ]
|
2017-02-06 19:05:55 +00:00
|
|
|
++ stdenv.lib.optionals stdenv.isDarwin
|
|
|
|
(with darwin.apple_sdk.frameworks; [ OpenGL GLUT Cocoa ])
|
2016-10-02 21:55:56 +01:00
|
|
|
;
|
2010-02-21 17:36:41 +00:00
|
|
|
in
|
2015-02-09 21:27:51 +00:00
|
|
|
stdenv.mkDerivation {
|
|
|
|
inherit (s) name version;
|
2010-02-21 17:36:41 +00:00
|
|
|
inherit buildInputs;
|
2016-02-02 13:53:49 +00:00
|
|
|
|
2015-02-09 21:27:51 +00:00
|
|
|
src = fetchurl {
|
|
|
|
inherit (s) url sha256;
|
|
|
|
};
|
2016-02-02 13:53:49 +00:00
|
|
|
|
2015-02-09 21:27:51 +00:00
|
|
|
preConfigure = ''
|
2010-02-21 17:36:41 +00:00
|
|
|
export HOME="$PWD"
|
2015-02-09 21:27:51 +00:00
|
|
|
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/
|
2016-02-02 14:18:41 +00:00
|
|
|
rm *.tar.gz
|
|
|
|
configureFlags="$configureFlags --with-latex=$out/share/texmf/tex/latex --with-context=$out/share/texmf/tex/context/third"
|
2010-02-21 17:36:41 +00:00
|
|
|
'';
|
2016-02-02 13:53:49 +00:00
|
|
|
|
2016-04-16 17:45:49 +01:00
|
|
|
NIX_CFLAGS_COMPILE = [ "-I${boehmgc.dev}/include/gc" ];
|
2016-02-02 14:18:41 +00:00
|
|
|
|
2015-02-09 21:27:51 +00:00
|
|
|
postInstall = ''
|
2011-12-24 18:03:51 +00:00
|
|
|
mv -v "$out/share/info/asymptote/"*.info $out/share/info/
|
2011-12-24 18:28:23 +00:00
|
|
|
sed -i -e 's|(asymptote/asymptote)|(asymptote)|' $out/share/info/asymptote.info
|
2011-12-24 18:03:51 +00:00
|
|
|
rmdir $out/share/info/asymptote
|
|
|
|
rm $out/share/info/dir
|
|
|
|
'';
|
2016-02-02 13:53:49 +00:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2016-10-02 21:55:56 +01:00
|
|
|
meta = with stdenv.lib; {
|
2012-12-08 09:05:43 +00:00
|
|
|
inherit (s) version;
|
2015-02-09 21:27:51 +00:00
|
|
|
description = "A tool for programming graphics intended to replace Metapost";
|
2016-10-02 21:55:56 +01:00
|
|
|
license = licenses.gpl3Plus;
|
|
|
|
maintainers = [ maintainers.raskin maintainers.peti ];
|
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
2010-02-21 17:36:41 +00:00
|
|
|
};
|
|
|
|
}
|