blob: f2aac9a19180970731605bf2aeb4aa1d379b9cbb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
{
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-ncRELlbT8Dy8huLgZrroRWohCLeN5cRjMWrIW4JNcCM=";
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 ];
};
}
|