summary refs log tree commit diff
path: root/pkgs/applications/graphics/ImageMagick
diff options
context:
space:
mode:
authorJörg Thalheim <Mic92@users.noreply.github.com>2017-08-25 22:16:34 +0100
committerGitHub <noreply@github.com>2017-08-25 22:16:34 +0100
commit89e542d824a9b34dda28c02a522b5dfcd3f544ea (patch)
tree9d24c4e6475e808ac03b3d3e6ffa4c11b51306ca /pkgs/applications/graphics/ImageMagick
parent70aa1e365757138d19794d1dac3317841fc497d7 (diff)
parent2f2275bb8cc4fe1fa6a3cf2611ecd7d681b1519b (diff)
downloadnixlib-89e542d824a9b34dda28c02a522b5dfcd3f544ea.tar
nixlib-89e542d824a9b34dda28c02a522b5dfcd3f544ea.tar.gz
nixlib-89e542d824a9b34dda28c02a522b5dfcd3f544ea.tar.bz2
nixlib-89e542d824a9b34dda28c02a522b5dfcd3f544ea.tar.lz
nixlib-89e542d824a9b34dda28c02a522b5dfcd3f544ea.tar.xz
nixlib-89e542d824a9b34dda28c02a522b5dfcd3f544ea.tar.zst
nixlib-89e542d824a9b34dda28c02a522b5dfcd3f544ea.zip
Merge pull request #28501 from georgewhewell/imagemagick-aarch64
ImageMagick: allow building on aarch64
Diffstat (limited to 'pkgs/applications/graphics/ImageMagick')
-rw-r--r--pkgs/applications/graphics/ImageMagick/7.0.nix1
-rw-r--r--pkgs/applications/graphics/ImageMagick/default.nix1
2 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/applications/graphics/ImageMagick/7.0.nix b/pkgs/applications/graphics/ImageMagick/7.0.nix
index 5524f12077f9..cd99861ea7b6 100644
--- a/pkgs/applications/graphics/ImageMagick/7.0.nix
+++ b/pkgs/applications/graphics/ImageMagick/7.0.nix
@@ -10,6 +10,7 @@ let
     if stdenv.system == "i686-linux" then "i686"
     else if stdenv.system == "x86_64-linux" || stdenv.system == "x86_64-darwin" then "x86-64"
     else if stdenv.system == "armv7l-linux" then "armv7l"
+    else if stdenv.system == "aarch64-linux" then "aarch64"
     else throw "ImageMagick is not supported on this platform.";
 
   cfg = {
diff --git a/pkgs/applications/graphics/ImageMagick/default.nix b/pkgs/applications/graphics/ImageMagick/default.nix
index e31c249bb93b..1cf08f286ef3 100644
--- a/pkgs/applications/graphics/ImageMagick/default.nix
+++ b/pkgs/applications/graphics/ImageMagick/default.nix
@@ -10,6 +10,7 @@ let
     if stdenv.system == "i686-linux" then "i686"
     else if stdenv.system == "x86_64-linux" || stdenv.system == "x86_64-darwin" then "x86-64"
     else if stdenv.system == "armv7l-linux" then "armv7l"
+    else if stdenv.system == "aarch64-linux" then "aarch64"
     else throw "ImageMagick is not supported on this platform.";
 
   cfg = {