summary refs log tree commit diff
path: root/pkgs/tools/graphics/asymptote
diff options
context:
space:
mode:
authorDaiderd Jordan <daiderd@gmail.com>2018-09-12 22:39:38 +0200
committerDaiderd Jordan <daiderd@gmail.com>2018-09-12 23:14:42 +0200
commit9fc6f1123df05698644849d301e4b8c8aaf686b5 (patch)
treed1a683dfc708e3f677fde77b4c360acada3a6a56 /pkgs/tools/graphics/asymptote
parentb8148813941f026af03b7e8a94e66a4bcfe83c64 (diff)
downloadnixpkgs-9fc6f1123df05698644849d301e4b8c8aaf686b5.tar
nixpkgs-9fc6f1123df05698644849d301e4b8c8aaf686b5.tar.gz
nixpkgs-9fc6f1123df05698644849d301e4b8c8aaf686b5.tar.bz2
nixpkgs-9fc6f1123df05698644849d301e4b8c8aaf686b5.tar.lz
nixpkgs-9fc6f1123df05698644849d301e4b8c8aaf686b5.tar.xz
nixpkgs-9fc6f1123df05698644849d301e4b8c8aaf686b5.tar.zst
nixpkgs-9fc6f1123df05698644849d301e4b8c8aaf686b5.zip
asymptote: mark broken on darwin
It only builds with gc-7.6.0 on darwin for some reason.

/cc ZHF #45961
Diffstat (limited to 'pkgs/tools/graphics/asymptote')
-rw-r--r--pkgs/tools/graphics/asymptote/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/tools/graphics/asymptote/default.nix b/pkgs/tools/graphics/asymptote/default.nix
index 1aa4fff8224..a0bf0a43447 100644
--- a/pkgs/tools/graphics/asymptote/default.nix
+++ b/pkgs/tools/graphics/asymptote/default.nix
@@ -1,5 +1,5 @@
 {stdenv, fetchurl
-  , freeglut, ghostscriptX, imagemagick, fftw 
+  , freeglut, ghostscriptX, imagemagick, fftw
   , boehmgc, libGLU, libGL, mesa_noglu, ncurses, readline, gsl, libsigsegv
   , python, zlib, perl, texLive, texinfo, xz
 , darwin
@@ -35,7 +35,7 @@ stdenv.mkDerivation {
 
   preConfigure = ''
     export HOME="$PWD"
-    patchShebangs . 
+    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/
@@ -63,6 +63,7 @@ stdenv.mkDerivation {
     description =  "A tool for programming graphics intended to replace Metapost";
     license = licenses.gpl3Plus;
     maintainers = [ maintainers.raskin maintainers.peti ];
+    broken = stdenv.isDarwin;  # https://github.com/vectorgraphics/asymptote/issues/69
     platforms = platforms.linux ++ platforms.darwin;
   };
 }