factoriolab: init at 3.8.1 (#358014)
[NixPkgs.git] / pkgs / tools / graphics / asymptote / default.nix
blobd2fb26e3e336b083a4235f1faa7fce465a013cf3
1 { lib, stdenv, fetchurl
2 , autoreconfHook, bison, glm, flex, wrapQtAppsHook, cmake, pkg-config
3 , libglut, ghostscriptX, imagemagick, fftw, eigen, libtirpc
4 , boehmgc, libGLU, libGL, ncurses, readline, gsl, libsigsegv
5 , python3, qtbase, qtsvg, boost
6 , zlib, perl, curl
7 , texinfo
8 , texliveSmall
9 , darwin
12 stdenv.mkDerivation (finalAttrs: {
13   version = "2.92";
14   pname = "asymptote";
16   outputs = [ "out" "man" "info" "doc" "tex" ];
18   src = fetchurl {
19     url = "mirror://sourceforge/asymptote/${finalAttrs.version}/asymptote-${finalAttrs.version}.src.tgz";
20     hash = "sha256-nZtcb6fg+848HlT+sl4tUdKMT+d5jyTHbNyugpGo6mY=";
21   };
23   # override with TeX Live containers to avoid building sty, docs from source
24   texContainer = null;
25   texdocContainer = null;
27   nativeBuildInputs = [
28     autoreconfHook
29     bison
30     flex
31     bison
32     texinfo
33     wrapQtAppsHook
34     cmake
35     pkg-config
36   ] ++ lib.optional (finalAttrs.texContainer == null || finalAttrs.texdocContainer == null)
37     (texliveSmall.withPackages (ps: with ps; [ epsf cm-super ps.texinfo media9 ocgx2 collection-latexextra ]));
39   buildInputs = [
40     ghostscriptX imagemagick fftw eigen
41     boehmgc ncurses readline gsl libsigsegv
42     zlib perl curl qtbase qtsvg boost
43     (python3.withPackages (ps: with ps; [ cson numpy pyqt5 ]))
44   ] ++ lib.optionals stdenv.hostPlatform.isLinux [ libtirpc ];
46   propagatedBuildInputs = [
47     glm
48   ] ++ lib.optionals stdenv.hostPlatform.isLinux [
49     libglut libGLU libGL
50   ] ++ lib.optionals stdenv.hostPlatform.isDarwin (with darwin.apple_sdk.frameworks; [
51     OpenGL GLUT Cocoa
52   ]);
54   dontWrapQtApps = true;
56   # do not build $tex/ls-R which will be generated by texlive.withPackages
57   # do not build and install sty and docs, if provided by tex/texdoc texlive containers
58   # (this is an optimisation to make texliveMedium and texliveFull independent of texliveSmall)
59   preConfigure = ''
60     HOME=$TMP
61     substituteInPlace Makefile.in \
62       --replace-fail ' install-texhash' '''
63     if [[ -n $texContainer ]] ; then
64       sed -i Makefile.in -e '/(\(latex\|context\)dir)/d'
65       substituteInPlace Makefile.in \
66         --replace-fail 'asy sty' 'asy'
67     else
68       prependToVar configureFlags "--with-latex=$tex/tex/latex" "--with-context=$tex/tex/context/third"
69     fi
70     if [[ -n $texdocContainer ]] ; then
71       substituteInPlace Makefile.in \
72         --replace-fail ' install-man' ''' \
73         --replace-fail 'docdir = $(DESTDIR)@docdir@' 'docdir = $(TMP)/doc'
74     fi
75   '';
77   # do not use bundled libgc.so
78   configureFlags = [ "--enable-gc=system" ]
79     # TODO add open_memstream to enable XDR/V3D on Darwin (requires memstream or >=10.13 Apple SDK)
80     ++ lib.optional stdenv.hostPlatform.isDarwin "--enable-xdr=no";
82   env.NIX_CFLAGS_COMPILE = "-I${boehmgc.dev}/include/gc";
84   postInstall = ''
85     rm "$out"/bin/xasy
86     makeQtWrapper "$out"/share/asymptote/GUI/xasy.py "$out"/bin/xasy --prefix PATH : "$out"/bin
88     if [[ -z $texdocContainer ]] ; then
89       mv "$info"/share/info/asymptote/*.info "$info"/share/info/
90       sed -i -e 's|(asymptote/asymptote)|(asymptote)|' "$info"/share/info/asymptote.info
91       rmdir "$info"/share/info/asymptote
92       rm -f "$info"/share/info/dir
93     fi
94     install -Dt $out/share/emacs/site-lisp/${finalAttrs.pname} $out/share/asymptote/*.el
95   '';
97   # fixupPhase crashes if the outputs are not directories
98   preFixup = ''
99     if [[ -n $texContainer ]] ; then
100       mkdir -p "$tex"
101     fi
102     if [[ -n $texdocContainer ]] ; then
103       mkdir -p "$doc" "$man" "$info"
104     fi
105   '';
107   postFixup = ''
108     if [[ -n $texContainer ]] ; then
109       rmdir "$tex"
110       ln -s "$texContainer" "$tex"
111     fi
112     if [[ -n $texdocContainer ]] ; then
113       mkdir -p "$man/share" "$info/share"
114       ln -s "$texdocContainer" "$doc/share"
115       ln -s "$texdocContainer/doc/man" "$man/share"
116       ln -s "$texdocContainer/doc/info" "$info/share"
117     fi
118   '';
120   dontUseCmakeConfigure = true;
122   enableParallelBuilding = true;
123   # Missing install depends:
124   #   ...-coreutils-9.1/bin/install: cannot stat 'asy-keywords.el': No such file or directory
125   #   make: *** [Makefile:272: install-asy] Error 1
126   enableParallelInstalling = false;
128   meta = with lib; {
129     description =  "Tool for programming graphics intended to replace Metapost";
130     license = licenses.gpl3Plus;
131     maintainers = [ maintainers.raskin ];
132     platforms = platforms.linux ++ platforms.darwin;
133   };