about summary refs log tree commit diff
path: root/pkgs/applications/graphics
diff options
context:
space:
mode:
authorTomas Hlavaty <tom@logand.com>2016-02-14 21:13:51 +0100
committerTomas Hlavaty <tom@logand.com>2016-02-14 23:45:32 +0100
commit6c532624808336b853f31d27ef3309e6feab4ac1 (patch)
treef22d045f700a195ddeba547618be97ec8f98c248 /pkgs/applications/graphics
parent976895c0d04b998a66853158ab312b9fda42d596 (diff)
downloadnixlib-6c532624808336b853f31d27ef3309e6feab4ac1.tar
nixlib-6c532624808336b853f31d27ef3309e6feab4ac1.tar.gz
nixlib-6c532624808336b853f31d27ef3309e6feab4ac1.tar.bz2
nixlib-6c532624808336b853f31d27ef3309e6feab4ac1.tar.lz
nixlib-6c532624808336b853f31d27ef3309e6feab4ac1.tar.xz
nixlib-6c532624808336b853f31d27ef3309e6feab4ac1.tar.zst
nixlib-6c532624808336b853f31d27ef3309e6feab4ac1.zip
ImageMagick: build also on armv7l-linux
Diffstat (limited to 'pkgs/applications/graphics')
-rw-r--r--pkgs/applications/graphics/ImageMagick/default.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/pkgs/applications/graphics/ImageMagick/default.nix b/pkgs/applications/graphics/ImageMagick/default.nix
index 8fa86041414f..e75e86a4d533 100644
--- a/pkgs/applications/graphics/ImageMagick/default.nix
+++ b/pkgs/applications/graphics/ImageMagick/default.nix
@@ -7,6 +7,7 @@ let
   arch =
     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 throw "ImageMagick is not supported on this platform.";
 in