mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-03 20:33:21 +00:00
89 lines
2.3 KiB
Nix
89 lines
2.3 KiB
Nix
{ lib, stdenv, fetchFromGitHub
|
|
, autoreconfHook, bison, glm, flex, wrapQtAppsHook, cmake
|
|
, freeglut, ghostscriptX, imagemagick, fftw
|
|
, boehmgc, libGLU, libGL, mesa, ncurses, readline, gsl, libsigsegv
|
|
, python3, qtbase, qtsvg, boost
|
|
, zlib, perl, curl
|
|
, texliveSmall, texinfo
|
|
, darwin
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "2.86";
|
|
pname = "asymptote";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "vectorgraphics";
|
|
repo = pname;
|
|
rev = version;
|
|
hash = "sha256-Bk8/WIQTfrbOo9b2hw580vJwiK6P1OBV5HMqMH+LkuE=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
bison
|
|
flex
|
|
bison
|
|
texinfo
|
|
wrapQtAppsHook
|
|
cmake
|
|
];
|
|
|
|
buildInputs = [
|
|
ghostscriptX imagemagick fftw
|
|
boehmgc ncurses readline gsl libsigsegv
|
|
zlib perl curl qtbase qtsvg boost
|
|
(texliveSmall.withPackages (ps: with ps; [ epsf cm-super ps.texinfo media9 ocgx2 collection-latexextra ]))
|
|
(python3.withPackages (ps: with ps; [ cson numpy pyqt5 ]))
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
glm
|
|
] ++ lib.optionals stdenv.isLinux [
|
|
freeglut libGLU libGL mesa.osmesa
|
|
] ++ lib.optionals stdenv.isDarwin (with darwin.apple_sdk.frameworks; [
|
|
OpenGL GLUT Cocoa
|
|
]);
|
|
|
|
dontWrapQtApps = true;
|
|
|
|
preConfigure = ''
|
|
HOME=$TMP
|
|
'';
|
|
|
|
configureFlags = [
|
|
"--with-latex=$out/share/texmf/tex/latex"
|
|
"--with-context=$out/share/texmf/tex/context/third"
|
|
];
|
|
|
|
env.NIX_CFLAGS_COMPILE = "-I${boehmgc.dev}/include/gc";
|
|
|
|
postInstall = ''
|
|
rm "$out"/bin/xasy
|
|
makeQtWrapper "$out"/share/asymptote/GUI/xasy.py "$out"/bin/xasy --prefix PATH : "$out"/bin
|
|
|
|
mv $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 -f $out/share/info/dir
|
|
|
|
rm -rf $out/share/texmf
|
|
install -Dt $out/share/emacs/site-lisp/${pname} $out/share/asymptote/*.el
|
|
'';
|
|
|
|
dontUseCmakeConfigure = true;
|
|
|
|
enableParallelBuilding = true;
|
|
# Missing install depends:
|
|
# ...-coreutils-9.1/bin/install: cannot stat 'asy-keywords.el': No such file or directory
|
|
# make: *** [Makefile:272: install-asy] Error 1
|
|
enableParallelInstalling = false;
|
|
|
|
meta = with lib; {
|
|
description = "A tool for programming graphics intended to replace Metapost";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = [ maintainers.raskin ];
|
|
platforms = platforms.linux ++ platforms.darwin;
|
|
};
|
|
}
|