Commit 6d3145bb authored by Nick Gerace's avatar Nick Gerace Committed by Cole Helbling
Browse files

buildkite-test-collector-rust: 0.1.0 -> 0.1.3

parent 6f97e216
Loading
Loading
Loading
Loading
+6 −3
Original line number Diff line number Diff line
@@ -3,24 +3,27 @@
, rustPlatform
, stdenv
, Security
, nix-update-script
}:

rustPlatform.buildRustPackage rec {
  pname = "buildkite-test-collector-rust";
  version = "0.1.0";
  version = "0.1.3";

  src = fetchFromGitHub {
    owner = "buildkite";
    repo = "test-collector-rust";
    rev = "v${version}";
    sha256 = "sha256-rY/+AwxO0+xcnRj0A8TRhCUJQ0ecosybI6It1mDOdQM=";
    sha256 = "sha256-PF2TFfzWmHXLgTopzJ04dfnzd3Sc/A6Hduffz2guxmU=";
  };

  buildInputs = lib.optionals stdenv.isDarwin [
    Security
  ];

  cargoSha256 = "sha256-qfJ0ROi0S0mmPl6kKrW3dp3VLjYqK+sBVj+iKDNTjyM=";
  cargoSha256 = "sha256-4eaU6dOb97/vV3NSCCpdzK2oQUIHl4kdAtgWbGsY5LU=";

  passthru.updateScript = nix-update-script { };

  meta = with lib; {
    description = "Rust adapter for Buildkite Test Analytics";