Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

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.

authored by

Maximilian Bosch and committed by
GitHub
bcf4eea3 3cc6bda3

+7
+7
pkgs/development/interpreters/evcxr/default.nix
··· 20 20 buildInputs = lib.optionals stdenv.isDarwin 21 21 [ libiconv CoreServices Security ]; 22 22 23 + # test broken with rust 1.69: 24 + # * https://github.com/evcxr/evcxr/issues/294 25 + # * https://github.com/NixOS/nixpkgs/issues/229524 26 + checkFlags = [ 27 + "--skip=check_for_errors" 28 + ]; 29 + 23 30 postInstall = let 24 31 wrap = exe: '' 25 32 wrapProgram $out/bin/${exe} \