{ lib, fetchFromGitHub, rustPlatform, stdenv, libiconv }: rustPlatform.buildRustPackage rec { pname = "cargo-nextest"; version = "0.9.16"; src = fetchFromGitHub { owner = "nextest-rs"; repo = "nextest"; rev = "cargo-nextest-${version}"; sha256 = "sha256-XxsJSuUyw2q2kXaITWbkka8R6fx0ikoRMtw0hiySJ+M="; }; cargoSha256 = "sha256-aE/yKf2HIjN/yk3Euj2KaX4DPB4wFywAAHWkRQ1SWKw="; cargoTestFlags = [ # TODO: investigate some more why these tests fail in nix "--" "--skip=tests_integration::test_relocated_run" "--skip=tests_integration::test_run" "--skip=tests_integration::test_run_after_build" ]; meta = with lib; { description = "Next-generation test runner for Rust projects"; homepage = "https://github.com/nextest-rs/nextest"; license = with licenses; [ mit asl20 ]; maintainers = [ maintainers.ekleog ]; }; }