qtcreator: restrict to intel linux

It has never been building for aarch64 or darwin.
This commit is contained in:
Orivej Desh 2017-12-07 14:51:57 +00:00
parent 4b80ec84fe
commit 81f2d8593b

View File

@ -50,6 +50,6 @@ stdenv.mkDerivation rec {
homepage = https://wiki.qt.io/Category:Tools::QtCreator;
license = "LGPL";
maintainers = [ maintainers.akaWolf ];
platforms = platforms.all;
platforms = [ "i686-linux" "x86_64-linux" ];
};
}