forked from mirrors/nixpkgs
Merge pull request #170754 from alekseysidorov/cargo2junit
cargo2junit: init at 0.1.12
This commit is contained in:
commit
90ee9b0b1a
|
@ -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";
|
||||
|
|
20
pkgs/development/tools/rust/cargo2junit/default.nix
Normal file
20
pkgs/development/tools/rust/cargo2junit/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue