aboutsummaryrefslogtreecommitdiff
path: root/pkgs/applications/graphics/ImageMagick
diff options
context:
space:
mode:
authorJohn Ericson <John.Ericson@Obsidian.Systems>2018-08-20 15:11:29 -0400
committerJohn Ericson <John.Ericson@Obsidian.Systems>2018-08-30 17:20:32 -0400
commit2c2f1e37d4374ea61caefd9389927ea03df4ce31 (patch)
tree1c0dff3f6483825a9143741bdddca44f35bb4224 /pkgs/applications/graphics/ImageMagick
parent94f71d800db2ef7afb9fc8dad9e9aa503bfa2941 (diff)
reewide: Purge all uses `stdenv.system` and top-level `system`
It is deprecated and will be removed after 18.09.
Diffstat (limited to 'pkgs/applications/graphics/ImageMagick')
-rw-r--r--pkgs/applications/graphics/ImageMagick/7.0.nix8
-rw-r--r--pkgs/applications/graphics/ImageMagick/default.nix8
2 files changed, 8 insertions, 8 deletions
diff --git a/pkgs/applications/graphics/ImageMagick/7.0.nix b/pkgs/applications/graphics/ImageMagick/7.0.nix
index c4afd6b3bed..893f8d1da6d 100644
--- a/pkgs/applications/graphics/ImageMagick/7.0.nix
+++ b/pkgs/applications/graphics/ImageMagick/7.0.nix
@@ -7,10 +7,10 @@
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 if stdenv.system == "aarch64-linux" then "aarch64"
+ if stdenv.hostPlatform.system == "i686-linux" then "i686"
+ else if stdenv.hostPlatform.system == "x86_64-linux" || stdenv.hostPlatform.system == "x86_64-darwin" then "x86-64"
+ else if stdenv.hostPlatform.system == "armv7l-linux" then "armv7l"
+ else if stdenv.hostPlatform.system == "aarch64-linux" then "aarch64"
else throw "ImageMagick is not supported on this platform.";
cfg = {
diff --git a/pkgs/applications/graphics/ImageMagick/default.nix b/pkgs/applications/graphics/ImageMagick/default.nix
index 94a4aeaa933..22d1341f0dc 100644
--- a/pkgs/applications/graphics/ImageMagick/default.nix
+++ b/pkgs/applications/graphics/ImageMagick/default.nix
@@ -7,10 +7,10 @@
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 if stdenv.system == "aarch64-linux" then "aarch64"
+ if stdenv.hostPlatform.system == "i686-linux" then "i686"
+ else if stdenv.hostPlatform.system == "x86_64-linux" || stdenv.hostPlatform.system == "x86_64-darwin" then "x86-64"
+ else if stdenv.hostPlatform.system == "armv7l-linux" then "armv7l"
+ else if stdenv.hostPlatform.system == "aarch64-linux" then "aarch64"
else throw "ImageMagick is not supported on this platform.";
cfg = {