summary refs log tree commit diff
path: root/pkgs/applications/misc
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2016-03-25 16:42:50 +0100
committerEelco Dolstra <eelco.dolstra@logicblox.com>2016-03-25 16:44:02 +0100
commit7f61c7289f62066c055411c2dfa466bfa2472e12 (patch)
tree7daf94b1a0fde8f0329b6b5d41b9da331516dd39 /pkgs/applications/misc
parentfca9b335ae81c86c34a52797c4b3ae81a445183a (diff)
downloadnixpkgs-7f61c7289f62066c055411c2dfa466bfa2472e12.tar
nixpkgs-7f61c7289f62066c055411c2dfa466bfa2472e12.tar.gz
nixpkgs-7f61c7289f62066c055411c2dfa466bfa2472e12.tar.bz2
nixpkgs-7f61c7289f62066c055411c2dfa466bfa2472e12.tar.lz
nixpkgs-7f61c7289f62066c055411c2dfa466bfa2472e12.tar.xz
nixpkgs-7f61c7289f62066c055411c2dfa466bfa2472e12.tar.zst
nixpkgs-7f61c7289f62066c055411c2dfa466bfa2472e12.zip
blender: Disable i686-linux build
The openimageio dependency doesn't build on i686. But probably nobody
cares about running Blender on 32-bit anymore.

http://hydra.nixos.org/build/33602734
Diffstat (limited to 'pkgs/applications/misc')
-rw-r--r--pkgs/applications/misc/blender/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/misc/blender/default.nix b/pkgs/applications/misc/blender/default.nix
index 7eb30bf76dc..0085da5b468 100644
--- a/pkgs/applications/misc/blender/default.nix
+++ b/pkgs/applications/misc/blender/default.nix
@@ -62,7 +62,7 @@ stdenv.mkDerivation rec {
     # They comment two licenses: GPLv2 and Blender License, but they
     # say: "We've decided to cancel the BL offering for an indefinite period."
     license = licenses.gpl2Plus;
-    platforms = platforms.linux;
+    platforms = [ "x86_64-linux" ];
     maintainers = [ maintainers.goibhniu ];
   };
 }