From a1650f509490d15080097c48bb5d01195475e47f Mon Sep 17 00:00:00 2001 From: Francesco Gazzetta Date: Thu, 15 Jun 2023 15:43:18 +0200 Subject: [PATCH] libressl: disable tests on riscv Failing tests: 44 - destest, 57 - evptest --- pkgs/development/libraries/libressl/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/libraries/libressl/default.nix b/pkgs/development/libraries/libressl/default.nix index 2ee2c0ce9f44..c4f75f45950f 100644 --- a/pkgs/development/libraries/libressl/default.nix +++ b/pkgs/development/libraries/libressl/default.nix @@ -62,7 +62,7 @@ let ''} ''; - doCheck = !stdenv.hostPlatform.isPower64; + doCheck = !(stdenv.hostPlatform.isPower64 || stdenv.hostPlatform.isRiscV); preCheck = '' export PREVIOUS_${ldLibPathEnvName}=$${ldLibPathEnvName} export ${ldLibPathEnvName}="$${ldLibPathEnvName}:$(realpath tls/):$(realpath ssl/):$(realpath crypto/)"