3
0
Fork 0
forked from mirrors/nixpkgs

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
This commit is contained in:
Eelco Dolstra 2016-03-25 16:42:50 +01:00
parent fca9b335ae
commit 7f61c7289f

View file

@ -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 ];
};
}