Skip to content

Commit

Permalink
trickest-cli: init at 1.7.5
Browse files Browse the repository at this point in the history
CLI tool to execute Trickest workflows

https://github.com/trickest/trickest-cli
  • Loading branch information
fabaff committed Apr 30, 2024
1 parent bb54a0c commit 9456c94
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions pkgs/by-name/tr/trickest-cli/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{
lib,
buildGoModule,
fetchFromGitHub,
}:

buildGoModule rec {
pname = "trickest-cli";
version = "1.7.5";

src = fetchFromGitHub {
owner = "trickest";
repo = "trickest-cli";
rev = "refs/tags/v${version}";
hash = "sha256-erPcb+cHCAmhPGwfu+g0yyAFx252+tpIOFQiUBuPUcs=";
};

vendorHash = "sha256-gk8YMMvTHBL7yoXU9n0jhtUS472fqLW5m+mSl4Lio6c=";

ldflags = [
"-s"
"-w"
];

meta = with lib; {
description = "CLI tool to execute Trickest workflows";
homepage = "https://github.com/trickest/trickest-cli";
changelog = "https://github.com/trickest/trickest-cli/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
mainProgram = "trickest";
};
}

0 comments on commit 9456c94

Please sign in to comment.