summary refs log tree commit diff
path: root/pkgs/applications/graphics
diff options
context:
space:
mode:
authorRyan Burns <rtburns@protonmail.com>2021-11-20 17:50:41 -0800
committerRyan Burns <rtburns@protonmail.com>2021-11-20 17:50:41 -0800
commit2175b157acf1fd338021bc162ec7c4d6d7f90306 (patch)
tree42240c01e72f022fd6d3bb2664960745e9ff757a /pkgs/applications/graphics
parent6aded65e28c8805bfb81e6b5fc1613633480eb16 (diff)
downloadnixpkgs-2175b157acf1fd338021bc162ec7c4d6d7f90306.tar
nixpkgs-2175b157acf1fd338021bc162ec7c4d6d7f90306.tar.gz
nixpkgs-2175b157acf1fd338021bc162ec7c4d6d7f90306.tar.bz2
nixpkgs-2175b157acf1fd338021bc162ec7c4d6d7f90306.tar.lz
nixpkgs-2175b157acf1fd338021bc162ec7c4d6d7f90306.tar.xz
nixpkgs-2175b157acf1fd338021bc162ec7c4d6d7f90306.tar.zst
nixpkgs-2175b157acf1fd338021bc162ec7c4d6d7f90306.zip
treewide: refactor isi686 && isx86_64 -> isx86
Diffstat (limited to 'pkgs/applications/graphics')
-rw-r--r--pkgs/applications/graphics/krita/generic.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/graphics/krita/generic.nix b/pkgs/applications/graphics/krita/generic.nix
index efaf341b1f6..a0819a203e7 100644
--- a/pkgs/applications/graphics/krita/generic.nix
+++ b/pkgs/applications/graphics/krita/generic.nix
@@ -32,7 +32,7 @@ mkDerivation rec {
     openjpeg opencolorio_1 poppler curl ilmbase
     qtmultimedia qtx11extras quazip
     python3Packages.pyqt5
-  ] ++ lib.optional (stdenv.hostPlatform.isi686 || stdenv.hostPlatform.isx86_64) vc;
+  ] ++ lib.optional stdenv.hostPlatform.isx86 vc;
 
   NIX_CFLAGS_COMPILE = [ "-I${ilmbase.dev}/include/OpenEXR" ]
     ++ lib.optional stdenv.cc.isGNU "-Wno-deprecated-copy";