cargo-raze: fix darwin (#124343)
* cargo-raze: fix darwin Disable tests on darwin as they've started failing after the latest update: #119531 Example failure: https://hydra.nixos.org/build/143411545 * Update pkgs/development/tools/rust/cargo-raze/default.nix Co-authored-by: Sandro <sandro.jaeckel@gmail.com> (cherry picked from commit 48b6b8b8c663a20fbe7969bed1d6381341106762)
This commit is contained in:
parent
e7f90ce89c
commit
8dc1b48597
@ -19,7 +19,9 @@ rustPlatform.buildRustPackage rec {
|
||||
buildInputs = [ curl libgit2 openssl ]
|
||||
++ lib.optional stdenv.isDarwin Security;
|
||||
|
||||
doCheck = true;
|
||||
# thread 'main' panicked at 'Cannot ping mock server.: "cannot send request to mock server: cannot send request to mock server: failed to resolve host name"'
|
||||
# __darwinAllowLocalNetworking does not fix the panic
|
||||
doCheck = !stdenv.isDarwin;
|
||||
|
||||
meta = with lib; {
|
||||
description = "Generate Bazel BUILD files from Cargo dependencies";
|
||||
|
Loading…
x
Reference in New Issue
Block a user