From bcf4eea3bd7f9200bf3ba25e5670b546ebb05b96 Mon Sep 17 00:00:00 2001 From: Maximilian Bosch Date: Fri, 5 May 2023 14:22:54 +0200 Subject: [PATCH] evcxr: skip test broken by rust 1.69 (#230089) Closes #229524 See also https://github.com/evcxr/evcxr/issues/294 While it's unfortunate that unused variable warnings aren't detected properly, the core functionality of the package is still fine, so let's skip the test for now and wait until upstream figures out a solution. --- pkgs/development/interpreters/evcxr/default.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pkgs/development/interpreters/evcxr/default.nix b/pkgs/development/interpreters/evcxr/default.nix index eab1f90e5f3..f4d07df624f 100644 --- a/pkgs/development/interpreters/evcxr/default.nix +++ b/pkgs/development/interpreters/evcxr/default.nix @@ -20,6 +20,13 @@ rustPlatform.buildRustPackage rec { buildInputs = lib.optionals stdenv.isDarwin [ libiconv CoreServices Security ]; + # test broken with rust 1.69: + # * https://github.com/evcxr/evcxr/issues/294 + # * https://github.com/NixOS/nixpkgs/issues/229524 + checkFlags = [ + "--skip=check_for_errors" + ]; + postInstall = let wrap = exe: '' wrapProgram $out/bin/${exe} \