From 563c329bedb084e49f6bc11da2bde02982169cff Mon Sep 17 00:00:00 2001 From: Marcin Serwin Date: Tue, 8 Apr 2025 21:06:03 +0200 Subject: [PATCH] calibre: unbreak on aarch64-linux After `onnxruntime` was updated to v1.21.0 the `piper-tts` started failing inside the nixbld due to the missing `/sys` directory. This is likely related to . --- pkgs/by-name/ca/calibre/package.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/by-name/ca/calibre/package.nix b/pkgs/by-name/ca/calibre/package.nix index 97927b9289ea..a862150743a5 100644 --- a/pkgs/by-name/ca/calibre/package.nix +++ b/pkgs/by-name/ca/calibre/package.nix @@ -219,6 +219,7 @@ stdenv.mkDerivation (finalAttrs: { $ETN 'test_qt' # we don't include svg or webp support $ETN 'test_import_of_all_python_modules' # explores actual file paths, gets confused $ETN 'test_websocket_basic' # flakey + ${lib.optionalString stdenv.hostPlatform.isAarch64 "$ETN 'test_piper'"} # https://github.com/microsoft/onnxruntime/issues/10038 ${lib.optionalString (!unrarSupport) "$ETN 'test_unrar'"} )