From 73ac45108a2dcd4e133e0abbede1dbf154c3f14b Mon Sep 17 00:00:00 2001 From: Tom Hall Date: Sat, 18 Aug 2018 19:18:32 +0100 Subject: qtcreator: enable on aarch64 and armv7 Patch (from https://bugreports.qt.io/browse/QTCREATORBUG-8107) to allow botan to build on arm. --- pkgs/development/tools/qtcreator/default.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'pkgs/development/tools/qtcreator/default.nix') diff --git a/pkgs/development/tools/qtcreator/default.nix b/pkgs/development/tools/qtcreator/default.nix index 38d385d1d55..24191e3a129 100644 --- a/pkgs/development/tools/qtcreator/default.nix +++ b/pkgs/development/tools/qtcreator/default.nix @@ -23,6 +23,8 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ qmake makeWrapper ]; + patches = optional (stdenv.isAarch64 || stdenv.isAarch32) ./0001-Fix-Allow-qt-creator-to-build-on-arm-aarch32-and-aar.patch; + doCheck = true; enableParallelBuilding = true; @@ -55,6 +57,6 @@ stdenv.mkDerivation rec { homepage = https://wiki.qt.io/Category:Tools::QtCreator; license = "LGPL"; maintainers = [ maintainers.akaWolf ]; - platforms = [ "i686-linux" "x86_64-linux" ]; + platforms = [ "i686-linux" "x86_64-linux" "aarch64-linux" "armv7l-linux" ]; }; } -- cgit 1.4.1