dotnet: improve language coverage of passthru.tests for dotnet sdks (#370789)
[NixPkgs.git] / pkgs / by-name / ca / cargo2junit / package.nix
blobf2aac9a19180970731605bf2aeb4aa1d379b9cbb
2   fetchCrate,
3   lib,
4   rustPlatform,
5 }:
7 rustPlatform.buildRustPackage rec {
8   pname = "cargo2junit";
9   version = "0.1.13";
11   src = fetchCrate {
12     inherit pname version;
13     hash = "sha256-R3a87nXCnGhdeyR7409hFR5Cj3TFUWqaLNOtlXPsvto=";
14   };
16   cargoPatches = [
17     ./0001-update-time-rs.patch
18   ];
20   cargoHash = "sha256-ncRELlbT8Dy8huLgZrroRWohCLeN5cRjMWrIW4JNcCM=";
22   meta = with lib; {
23     description = "Converts cargo's json output (from stdin) to JUnit XML (to stdout)";
24     mainProgram = "cargo2junit";
25     homepage = "https://github.com/johnterickson/cargo2junit";
26     license = licenses.mit;
27     maintainers = with maintainers; [ alekseysidorov ];
28   };