lol
1{ fetchCrate, lib, rustPlatform }:
2
3rustPlatform.buildRustPackage rec {
4 pname = "cargo2junit";
5 version = "0.1.13";
6
7 src = fetchCrate {
8 inherit pname version;
9 sha256 = "sha256-R3a87nXCnGhdeyR7409hFR5Cj3TFUWqaLNOtlXPsvto=";
10 };
11
12 cargoHash = "sha256-u5Pd967qxjqFl9fV/KkClLDBwKql7p66WqbIVBvWKuM=";
13
14 meta = with lib; {
15 description = "Converts cargo's json output (from stdin) to JUnit XML (to stdout).";
16 homepage = "https://github.com/johnterickson/cargo2junit";
17 license = licenses.mit;
18 maintainers = with maintainers; [ alekseysidorov ];
19 };
20}