1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-17 19:21:04 +00:00

cargo-mutants: 24.9.0 -> 24.11.0 (#355361)

This commit is contained in:
Nick Cao 2024-11-15 09:14:33 -05:00 committed by GitHub
commit 9838348c94
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,26 +1,21 @@
{ lib {
, rustPlatform lib,
, fetchFromGitHub rustPlatform,
, stdenv fetchFromGitHub,
, darwin
}: }:
rustPlatform.buildRustPackage rec { rustPlatform.buildRustPackage rec {
pname = "cargo-mutants"; pname = "cargo-mutants";
version = "24.9.0"; version = "24.11.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "sourcefrog"; owner = "sourcefrog";
repo = "cargo-mutants"; repo = "cargo-mutants";
rev = "v${version}"; rev = "v${version}";
hash = "sha256-fMw3Whyl+zTPpDTdYpwvzMQtSdr42ueEvkdmRI0N2aA="; hash = "sha256-A4DlHJKKopReKVF14w3c4wUXJe/vYUzbwMswuvMGs/E=";
}; };
cargoHash = "sha256-+vI/HPw0oe9K0kWpJXGBM0r7oVBh3+RJzSwklaywa54="; cargoHash = "sha256-QyQrLkLDvnytojf92P+INYlvfBc+t3240O2cx36CzTU=";
buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [
darwin.apple_sdk.frameworks.SystemConfiguration
];
# too many tests require internet access # too many tests require internet access
doCheck = false; doCheck = false;