diff options
Diffstat (limited to 'pkgs/by-name/ca/cargo2junit/package.nix')
-rw-r--r-- | pkgs/by-name/ca/cargo2junit/package.nix | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/pkgs/by-name/ca/cargo2junit/package.nix b/pkgs/by-name/ca/cargo2junit/package.nix new file mode 100644 index 000000000000..f2aac9a19180 --- /dev/null +++ b/pkgs/by-name/ca/cargo2junit/package.nix @@ -0,0 +1,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 ]; + }; +} |