Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
30 lines
670 B
Nix
30 lines
670 B
Nix
{
|
|
fetchCrate,
|
|
lib,
|
|
rustPlatform,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "cargo2junit";
|
|
version = "0.1.13";
|
|
|
|
src = fetchCrate {
|
|
inherit pname version;
|
|
hash = "sha256-R3a87nXCnGhdeyR7409hFR5Cj3TFUWqaLNOtlXPsvto=";
|
|
};
|
|
|
|
cargoPatches = [
|
|
./0001-update-time-rs.patch
|
|
];
|
|
|
|
cargoHash = "sha256-FPCLy4mIuUeHMuYgYGTs/fn8tUf55LVWBwrrA5hiG2k=";
|
|
|
|
meta = with lib; {
|
|
description = "Converts cargo's json output (from stdin) to JUnit XML (to stdout)";
|
|
mainProgram = "cargo2junit";
|
|
homepage = "https://github.com/johnterickson/cargo2junit";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ alekseysidorov ];
|
|
};
|
|
}
|