Merge pull request #28501 from georgewhewell/imagemagick-aarch64

ImageMagick: allow building on aarch64

authored by Jörg Thalheim and committed by GitHub 89e542d8 70aa1e36

+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 = {