···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"
013 else throw "ImageMagick is not supported on this platform.";
1415 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.";
1516 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"
013 else throw "ImageMagick is not supported on this platform.";
1415 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.";
1516 cfg = {