a3d4720129
GitOrigin-RevId: e182da8622a354d44c39b3d7a542dc12cd7baa5f
20 lines
578 B
Nix
20 lines
578 B
Nix
{ fetchCrate, lib, rustPlatform }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "cargo2junit";
|
|
version = "0.1.12";
|
|
|
|
src = fetchCrate {
|
|
inherit pname version;
|
|
sha256 = "sha256-wF1vDUVEume6aWzI5smTNlwc9WyZeTtUX416tYYrZPU=";
|
|
};
|
|
|
|
cargoSha256 = "sha256-GUCHWV+uPHZwhU4UhdXE2GHpeVnqbUTpfivA9Nh9MoY=";
|
|
|
|
meta = with lib; {
|
|
description = "Converts cargo's json output (from stdin) to JUnit XML (to stdout).";
|
|
homepage = "https://github.com/johnterickson/cargo2junit";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ alekseysidorov ];
|
|
};
|
|
}
|