3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #170754 from alekseysidorov/cargo2junit

cargo2junit: init at 0.1.12
This commit is contained in:
Ryan Lahfa 2022-12-28 09:05:01 +01:00 committed by GitHub
commit 90ee9b0b1a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 28 additions and 0 deletions

View file

@ -558,6 +558,12 @@
githubId = 43479487;
name = "Titouan Biteau";
};
alekseysidorov = {
email = "sauron1987@gmail.com";
github = "alekseysidorov";
githubId = 83360;
name = "Aleksey Sidorov";
};
alerque = {
email = "caleb@alerque.com";
github = "alerque";

View file

@ -0,0 +1,20 @@
{ fetchCrate, lib, rustPlatform }:
rustPlatform.buildRustPackage rec {
pname = "cargo2junit";
version = "0.1.12";
src = fetchCrate {
inherit pname version;
sha256 = "sha256-wF1vDUVEume6aWzI5smTNlwc9WyZeTtUX416tYYrZPU=";
};
cargoSha256 = "sha256-GUCHWV+uPHZwhU4UhdXE2GHpeVnqbUTpfivA9Nh9MoY=";
meta = with lib; {
description = "Converts cargo's json output (from stdin) to JUnit XML (to stdout).";
homepage = "https://github.com/johnterickson/cargo2junit";
license = licenses.mit;
maintainers = with maintainers; [ alekseysidorov ];
};
}

View file

@ -15297,6 +15297,8 @@ with pkgs;
buildRustCrate = callPackage ../build-support/rust/build-rust-crate { };
buildRustCrateHelpers = callPackage ../build-support/rust/build-rust-crate/helpers.nix { };
cargo2junit = callPackage ../development/tools/rust/cargo2junit { };
cargo-espflash = callPackage ../development/tools/rust/cargo-espflash {
inherit (darwin.apple_sdk.frameworks) Security;
};