From 597ebfcae25188cb7a1de01c99f88299323c545e Mon Sep 17 00:00:00 2001 From: Maximilian Wende Date: Mon, 11 Apr 2022 15:21:52 +0200 Subject: [PATCH] astc-encoder: limit to 64-bit target architectures Mark this package as supported only on 64 bit architectures, as the build fails for 32 bit targets. Maybe this can be fixed in the future --- pkgs/tools/graphics/astc-encoder/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/tools/graphics/astc-encoder/default.nix b/pkgs/tools/graphics/astc-encoder/default.nix index 8e7f71e68a4..e2af1494874 100644 --- a/pkgs/tools/graphics/astc-encoder/default.nix +++ b/pkgs/tools/graphics/astc-encoder/default.nix @@ -73,5 +73,6 @@ gccStdenv.mkDerivation rec { platforms = platforms.unix; license = licenses.asl20; maintainers = with maintainers; [ dasisdormax ]; + broken = !gccStdenv.is64bit; }; }