From e34b30764795cc7143fcc0ece2f67a9c845aa593 Mon Sep 17 00:00:00 2001 From: Tom Hall Date: Thu, 23 Aug 2018 19:20:18 +0100 Subject: qtcreator: apply patch on aarch64 This fixes a mistake in a previous commit which meant the patch required to build qtcreator was only applied on Aarch32, not both Aarch32 and Aarch64. --- pkgs/development/tools/qtcreator/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pkgs/development/tools/qtcreator') diff --git a/pkgs/development/tools/qtcreator/default.nix b/pkgs/development/tools/qtcreator/default.nix index f427c1bf795..1f0e8795dd6 100644 --- a/pkgs/development/tools/qtcreator/default.nix +++ b/pkgs/development/tools/qtcreator/default.nix @@ -23,7 +23,7 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ qmake makeWrapper ]; - patches = optional stdenv.hostPlatform.isArm ./0001-Fix-Allow-qt-creator-to-build-on-arm-aarch32-and-aar.patch; + patches = optional (stdenv.hostPlatform.isAarch32 || stdenv.hostPlatform.isAarch64) ./0001-Fix-Allow-qt-creator-to-build-on-arm-aarch32-and-aar.patch; doCheck = true; -- cgit 1.4.1