evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / tr / trickest-cli / package.nix
blob3b6f2c4c7046214dacf1c9b653995e03a3b89058
2   lib,
3   buildGoModule,
4   fetchFromGitHub,
5 }:
7 buildGoModule rec {
8   pname = "trickest-cli";
9   version = "1.8.3";
11   src = fetchFromGitHub {
12     owner = "trickest";
13     repo = "trickest-cli";
14     rev = "refs/tags/v${version}";
15     hash = "sha256-9RZmLs95dHZw5hgob5+iogxb6DV0FqVaY+PavGFpXj4=";
16   };
18   vendorHash = "sha256-gk8YMMvTHBL7yoXU9n0jhtUS472fqLW5m+mSl4Lio6c=";
20   ldflags = [
21     "-s"
22     "-w"
23   ];
25   meta = with lib; {
26     description = "CLI tool to execute Trickest workflows";
27     homepage = "https://github.com/trickest/trickest-cli";
28     changelog = "https://github.com/trickest/trickest-cli/releases/tag/v${version}";
29     license = licenses.mit;
30     maintainers = with maintainers; [ fab ];
31     mainProgram = "trickest";
32   };