blob: 53621c16ef214ad4e2f884f2958bad5baadd8a6a (
plain)
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 (finalAttrs: {
pname = "cargo2junit";
version = "0.1.13";
src = fetchCrate {
inherit (finalAttrs) pname version;
hash = "sha256-R3a87nXCnGhdeyR7409hFR5Cj3TFUWqaLNOtlXPsvto=";
};
cargoPatches = [
./0001-update-time-rs.patch
];
cargoHash = "sha256-FPCLy4mIuUeHMuYgYGTs/fn8tUf55LVWBwrrA5hiG2k=";
meta = {
description = "Converts cargo's json output (from stdin) to JUnit XML (to stdout)";
mainProgram = "cargo2junit";
homepage = "https://github.com/johnterickson/cargo2junit";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ alekseysidorov ];
};
})
|