biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / rust / cargo2junit / default.nix
blob6e10cc1fcb35a4a8041cc92c24c5b6b976ad7b3d
1 { fetchCrate, lib, rustPlatform }:
3 rustPlatform.buildRustPackage rec {
4   pname = "cargo2junit";
5   version = "0.1.13";
7   src = fetchCrate {
8     inherit pname version;
9     sha256 = "sha256-R3a87nXCnGhdeyR7409hFR5Cj3TFUWqaLNOtlXPsvto=";
10   };
12   cargoHash = "sha256-u5Pd967qxjqFl9fV/KkClLDBwKql7p66WqbIVBvWKuM=";
14   meta = with lib; {
15     description = "Converts cargo's json output (from stdin) to JUnit XML (to stdout).";
16     mainProgram = "cargo2junit";
17     homepage = "https://github.com/johnterickson/cargo2junit";
18     license = licenses.mit;
19     maintainers = with maintainers; [ alekseysidorov ];
20   };