61 lines
1.8 KiB
Nix
61 lines
1.8 KiB
Nix
{stdenv, fetchurl
|
|
, freeglut, ghostscriptX, imagemagick, fftw
|
|
, boehmgc, mesa_glu, mesa_noglu, ncurses, readline, gsl, libsigsegv
|
|
, python, zlib, perl, texLive, texinfo, xz
|
|
}:
|
|
|
|
assert stdenv.isLinux;
|
|
|
|
let
|
|
s = # Generated upstream information
|
|
rec {
|
|
baseName="asymptote";
|
|
version="2.38";
|
|
name="${baseName}-${version}";
|
|
hash="1dxwvq0xighqckkjkjva8s0igxfgy1j25z81pbwvlz6jzsrxpip9";
|
|
url="mirror://sourceforge/project/asymptote/2.38/asymptote-2.38.src.tgz";
|
|
sha256="1dxwvq0xighqckkjkjva8s0igxfgy1j25z81pbwvlz6jzsrxpip9";
|
|
};
|
|
buildInputs = [
|
|
freeglut ghostscriptX imagemagick fftw
|
|
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/
|
|
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.dev}/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";
|
|
license = stdenv.lib.licenses.gpl3Plus;
|
|
maintainers = [stdenv.lib.maintainers.raskin stdenv.lib.maintainers.peti];
|
|
platforms = stdenv.lib.platforms.linux;
|
|
};
|
|
}
|