Merge pull request #28501 from georgewhewell/imagemagick-aarch64

ImageMagick: allow building on aarch64

Changed files
+2
pkgs
applications
graphics
ImageMagick
+1
pkgs/applications/graphics/ImageMagick/7.0.nix
···
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 = {
+1
pkgs/applications/graphics/ImageMagick/default.nix
···
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 = {