summary refs log tree commit diff
path: root/pkgs/tools/graphics
diff options
context:
space:
mode:
authorChris Pattison <chpattison@gmail.com>2022-10-22 16:40:31 -0700
committerChris Pattison <chpattison@gmail.com>2022-10-22 17:12:28 -0700
commit4a2abb6b6d1dd50354a09b1532ccb14f6b983c7d (patch)
tree00f056b44f9db4f5a868df5165d55d8433969418 /pkgs/tools/graphics
parent8ac43eab7f09a2c114ca9a17e3d24f570b2752c9 (diff)
Asymptote: 2.67 -> 2.83
Diffstat (limited to 'pkgs/tools/graphics')
-rw-r--r--pkgs/tools/graphics/asymptote/default.nix13
1 files changed, 2 insertions, 11 deletions
diff --git a/pkgs/tools/graphics/asymptote/default.nix b/pkgs/tools/graphics/asymptote/default.nix
index eef97b55cca93..8e287f0073494 100644
--- a/pkgs/tools/graphics/asymptote/default.nix
+++ b/pkgs/tools/graphics/asymptote/default.nix
@@ -9,24 +9,16 @@
 }:
 
 stdenv.mkDerivation rec {
-  version = "2.67";
+  version = "2.83";
   pname = "asymptote";
 
   src = fetchFromGitHub {
     owner = "vectorgraphics";
     repo = pname;
     rev = version;
-    hash = "sha256-dMgsKBg6YQ3mdx3jFqjX4vZeizaier8+ZQUl4J6QXNE=";
+    hash = "sha256-Kz1uh3fMbADd39seunfL5O2Q31VLGKhu/ZuKi9/kuEc=";
   };
 
-  patches =
-    (lib.optional (lib.versionOlder version "2.68")
-      (fetchpatch {
-        url = "https://github.com/vectorgraphics/asymptote/commit/3361214340d58235f4dbb8f24017d0cd5d94da72.patch";
-        hash = "sha256-1RYMZcwbjBAM7aAXFBbwst0eozWYFtJ8HcicjXogS/w=";
-      }))
-  ;
-
   nativeBuildInputs = [
     autoreconfHook
     bison
@@ -80,7 +72,6 @@ stdenv.mkDerivation rec {
     description =  "A tool for programming graphics intended to replace Metapost";
     license = licenses.gpl3Plus;
     maintainers = [ maintainers.raskin ];
-    broken = stdenv.isDarwin;  # https://github.com/vectorgraphics/asymptote/issues/69
     platforms = platforms.linux ++ platforms.darwin;
   };
 }