mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-16 17:14:00 +00:00
buildkite-test-collector-rust: init at version 0.1.0
(#176118)
This commit is contained in:
parent
4ebc288038
commit
9632bc06ae
@ -0,0 +1,31 @@
|
||||
{ lib
|
||||
, fetchFromGitHub
|
||||
, rustPlatform
|
||||
, stdenv
|
||||
, Security
|
||||
}:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "buildkite-test-collector-rust";
|
||||
version = "0.1.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "buildkite";
|
||||
repo = "test-collector-rust";
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-rY/+AwxO0+xcnRj0A8TRhCUJQ0ecosybI6It1mDOdQM=";
|
||||
};
|
||||
|
||||
buildInputs = lib.optionals stdenv.isDarwin [
|
||||
Security
|
||||
];
|
||||
|
||||
cargoSha256 = "sha256-+3OwifInUAEn3IRbebg+eXEcHDNLkN169tNAUr7L8os=";
|
||||
|
||||
meta = with lib; {
|
||||
description = "Rust adapter for Buildkite Test Analytics";
|
||||
homepage = "https://buildkite.com/test-analytics";
|
||||
license = with licenses; [ mit ];
|
||||
maintainers = with maintainers; [ jfroche ];
|
||||
};
|
||||
}
|
@ -15087,6 +15087,10 @@ with pkgs;
|
||||
|
||||
buildkite-cli = callPackage ../development/tools/continuous-integration/buildkite-cli { };
|
||||
|
||||
buildkite-test-collector-rust = callPackage ../development/tools/continuous-integration/buildkite-test-collector-rust {
|
||||
inherit (darwin.apple_sdk.frameworks) Security;
|
||||
};
|
||||
|
||||
bump = callPackage ../development/tools/github/bump { };
|
||||
|
||||
libbpf = callPackage ../os-specific/linux/libbpf { };
|
||||
|
Loading…
Reference in New Issue
Block a user