ImageMagick: allow building on aarch64

+2
+1
pkgs/applications/graphics/ImageMagick/7.0.nix
··· 10 if stdenv.system == "i686-linux" then "i686" 11 else if stdenv.system == "x86_64-linux" || stdenv.system == "x86_64-darwin" then "x86-64" 12 else if stdenv.system == "armv7l-linux" then "armv7l" 13 else throw "ImageMagick is not supported on this platform."; 14 15 cfg = {
··· 10 if stdenv.system == "i686-linux" then "i686" 11 else if stdenv.system == "x86_64-linux" || stdenv.system == "x86_64-darwin" then "x86-64" 12 else if stdenv.system == "armv7l-linux" then "armv7l" 13 + else if stdenv.system == "aarch64-linux" then "aarch64" 14 else throw "ImageMagick is not supported on this platform."; 15 16 cfg = {
+1
pkgs/applications/graphics/ImageMagick/default.nix
··· 10 if stdenv.system == "i686-linux" then "i686" 11 else if stdenv.system == "x86_64-linux" || stdenv.system == "x86_64-darwin" then "x86-64" 12 else if stdenv.system == "armv7l-linux" then "armv7l" 13 else throw "ImageMagick is not supported on this platform."; 14 15 cfg = {
··· 10 if stdenv.system == "i686-linux" then "i686" 11 else if stdenv.system == "x86_64-linux" || stdenv.system == "x86_64-darwin" then "x86-64" 12 else if stdenv.system == "armv7l-linux" then "armv7l" 13 + else if stdenv.system == "aarch64-linux" then "aarch64" 14 else throw "ImageMagick is not supported on this platform."; 15 16 cfg = {