Unverified Commit f2d2d4ee authored by Aaron Jheng's avatar Aaron Jheng
Browse files

temporal-cli: 1.1.1 -> 1.1.2

parent a0f55b7c
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -8,11 +8,11 @@
}:

let
  metaCommon = with lib; {
  metaCommon = {
    description = "Command-line interface for running Temporal Server and interacting with Workflows, Activities, Namespaces, and other parts of Temporal";
    homepage = "https://docs.temporal.io/cli";
    license = licenses.mit;
    maintainers = with maintainers; [ aaronjheng ];
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ aaronjheng ];
  };

  overrideModAttrs = old: {
@@ -24,16 +24,16 @@ let

  tctl-next = buildGoModule rec {
    pname = "tctl-next";
    version = "1.1.1";
    version = "1.1.2";

    src = fetchFromGitHub {
      owner = "temporalio";
      repo = "cli";
      rev = "v${version}";
      hash = "sha256-KDJtCqx9Yp/zhutSElFveWYAKwJCckiM9k3FOtYTlLo=";
      hash = "sha256-7wURMdi357w5S4s909PTUZanRzFyWM588DMY7iYWP88=";
    };

    vendorHash = "sha256-Vur3e6olkC0Ewz/RDZe2AIpcIs5GqeVgJa+KO9g8X7o=";
    vendorHash = "sha256-umGwew8RwewlYJQD1psYSd9bu67cPEiHBJkQRJGjyGY=";

    inherit overrideModAttrs;