forked from mirrors/nixpkgs
dbffe147ea
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/asymptote/versions. These checks were done: - built on NixOS - ran ‘/nix/store/2qw7zf6brwdbj56dbrn9342s3l51j2d1-asymptote-2.42/bin/asy -h’ got 0 exit code - ran ‘/nix/store/2qw7zf6brwdbj56dbrn9342s3l51j2d1-asymptote-2.42/bin/asy --help’ got 0 exit code - found 2.42 with grep in /nix/store/2qw7zf6brwdbj56dbrn9342s3l51j2d1-asymptote-2.42 - directory tree listing: https://gist.github.com/ea517431d1ae476366452121c7871132
67 lines
2 KiB
Nix
67 lines
2 KiB
Nix
{stdenv, fetchurl
|
|
, freeglut, ghostscriptX, imagemagick, fftw
|
|
, boehmgc, libGLU, libGL, mesa_noglu, ncurses, readline, gsl, libsigsegv
|
|
, python, zlib, perl, texLive, texinfo, xz
|
|
, darwin
|
|
}:
|
|
|
|
let
|
|
s = # Generated upstream information
|
|
rec {
|
|
baseName="asymptote";
|
|
version="2.42";
|
|
name="${baseName}-${version}";
|
|
hash="0dprc4shzdpvp87kc97ggh5ay2zmskjjaciay7mnblx63rhk1d95";
|
|
url="https://freefr.dl.sourceforge.net/project/asymptote/2.42/asymptote-2.42.src.tgz";
|
|
sha256="0dprc4shzdpvp87kc97ggh5ay2zmskjjaciay7mnblx63rhk1d95";
|
|
};
|
|
buildInputs = [
|
|
ghostscriptX imagemagick fftw
|
|
boehmgc ncurses readline gsl libsigsegv
|
|
python zlib perl texLive texinfo xz ]
|
|
++ stdenv.lib.optionals stdenv.isLinux
|
|
[ freeglut libGLU libGL mesa_noglu.osmesa ]
|
|
++ stdenv.lib.optionals stdenv.isDarwin
|
|
(with darwin.apple_sdk.frameworks; [ OpenGL GLUT Cocoa ])
|
|
;
|
|
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
|
|
|
|
rm -rf "$out"/share/texmf
|
|
'';
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with stdenv.lib; {
|
|
inherit (s) version;
|
|
description = "A tool for programming graphics intended to replace Metapost";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = [ maintainers.raskin maintainers.peti ];
|
|
platforms = platforms.linux ++ platforms.darwin;
|
|
};
|
|
}
|