Loading pkgs/development/tools/rust/cargo-nextest/default.nix +4 −14 Original line number Diff line number Diff line { lib, rustPlatform, fetchFromGitHub, stdenv, darwin }: { lib, rustPlatform, fetchFromGitHub }: rustPlatform.buildRustPackage rec { pname = "cargo-nextest"; version = "0.9.72"; version = "0.9.77"; src = fetchFromGitHub { owner = "nextest-rs"; repo = "nextest"; rev = "cargo-nextest-${version}"; hash = "sha256-FQM1SVzGgmu6HHijP9kKEJPhhzSLs/jo36b4qnx0lb4="; hash = "sha256-4wqWCa3HHctKSaSYiiLBa9PM6cWyr0H7blI9BWGLTuI="; }; cargoHash = "sha256-2ttG9lPIkLRzDPcDNZjROOIIDhcEHfBvs/DTniZtQUY="; buildInputs = lib.optionals stdenv.isDarwin [ darwin.apple_sdk.frameworks.SystemConfiguration ]; cargoHash = "sha256-9XOkXK5sH+Qo8omS8V8FMgnh+oqLZL4paqoL9UOPevA="; cargoBuildFlags = [ "-p" "cargo-nextest" ]; cargoTestFlags = [ "-p" "cargo-nextest" ]; # TODO: investigate some more why these tests fail in nix checkFlags = [ "--skip=tests_integration::test_list" "--skip=tests_integration::test_relocated_run" "--skip=tests_integration::test_run" ]; meta = with lib; { description = "Next-generation test runner for Rust projects"; Loading Loading
pkgs/development/tools/rust/cargo-nextest/default.nix +4 −14 Original line number Diff line number Diff line { lib, rustPlatform, fetchFromGitHub, stdenv, darwin }: { lib, rustPlatform, fetchFromGitHub }: rustPlatform.buildRustPackage rec { pname = "cargo-nextest"; version = "0.9.72"; version = "0.9.77"; src = fetchFromGitHub { owner = "nextest-rs"; repo = "nextest"; rev = "cargo-nextest-${version}"; hash = "sha256-FQM1SVzGgmu6HHijP9kKEJPhhzSLs/jo36b4qnx0lb4="; hash = "sha256-4wqWCa3HHctKSaSYiiLBa9PM6cWyr0H7blI9BWGLTuI="; }; cargoHash = "sha256-2ttG9lPIkLRzDPcDNZjROOIIDhcEHfBvs/DTniZtQUY="; buildInputs = lib.optionals stdenv.isDarwin [ darwin.apple_sdk.frameworks.SystemConfiguration ]; cargoHash = "sha256-9XOkXK5sH+Qo8omS8V8FMgnh+oqLZL4paqoL9UOPevA="; cargoBuildFlags = [ "-p" "cargo-nextest" ]; cargoTestFlags = [ "-p" "cargo-nextest" ]; # TODO: investigate some more why these tests fail in nix checkFlags = [ "--skip=tests_integration::test_list" "--skip=tests_integration::test_relocated_run" "--skip=tests_integration::test_run" ]; meta = with lib; { description = "Next-generation test runner for Rust projects"; Loading