summary refs log tree commit diff
path: root/pkgs/applications/graphics/ImageMagick/7.0.nix
diff options
context:
space:
mode:
authorJonathan del Strother <jdelStrother@gmail.com>2021-03-19 09:11:25 +0000
committerAndrew Childs <lorne@cons.org.nz>2021-05-17 00:28:04 +0900
commitc022642fec40e38948a1efcd306852f2783c7b15 (patch)
tree7c5f7bce6084ae1a4727fceaebfb8cc44d26f361 /pkgs/applications/graphics/ImageMagick/7.0.nix
parent417a96c8beb4563a6d26814d5ff184524fb45726 (diff)
downloadnixpkgs-c022642fec40e38948a1efcd306852f2783c7b15.tar
nixpkgs-c022642fec40e38948a1efcd306852f2783c7b15.tar.gz
nixpkgs-c022642fec40e38948a1efcd306852f2783c7b15.tar.bz2
nixpkgs-c022642fec40e38948a1efcd306852f2783c7b15.tar.lz
nixpkgs-c022642fec40e38948a1efcd306852f2783c7b15.tar.xz
nixpkgs-c022642fec40e38948a1efcd306852f2783c7b15.tar.zst
nixpkgs-c022642fec40e38948a1efcd306852f2783c7b15.zip
imagemagick: support aarch64-darwin
Diffstat (limited to 'pkgs/applications/graphics/ImageMagick/7.0.nix')
-rw-r--r--pkgs/applications/graphics/ImageMagick/7.0.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/graphics/ImageMagick/7.0.nix b/pkgs/applications/graphics/ImageMagick/7.0.nix
index c4e1f3406f6..ed1e580cb16 100644
--- a/pkgs/applications/graphics/ImageMagick/7.0.nix
+++ b/pkgs/applications/graphics/ImageMagick/7.0.nix
@@ -11,7 +11,7 @@ let
     if stdenv.hostPlatform.system == "i686-linux" then "i686"
     else if stdenv.hostPlatform.system == "x86_64-linux" || stdenv.hostPlatform.system == "x86_64-darwin" then "x86-64"
     else if stdenv.hostPlatform.system == "armv7l-linux" then "armv7l"
-    else if stdenv.hostPlatform.system == "aarch64-linux" then "aarch64"
+    else if stdenv.hostPlatform.system == "aarch64-linux"  || stdenv.hostPlatform.system == "aarch64-darwin" then "aarch64"
     else if stdenv.hostPlatform.system == "powerpc64le-linux" then "ppc64le"
     else throw "ImageMagick is not supported on this platform.";
 in