Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at python-updates 33 lines 733 B view raw
1{ 2 lib, 3 buildGoModule, 4 fetchFromGitHub, 5}: 6 7buildGoModule rec { 8 pname = "trickest-cli"; 9 version = "2.1.3"; 10 11 src = fetchFromGitHub { 12 owner = "trickest"; 13 repo = "trickest-cli"; 14 tag = "v${version}"; 15 hash = "sha256-rYdv0OkABV2ih5u28AoxAg3qabbl2VQnuQ01PCXPY6M="; 16 }; 17 18 vendorHash = "sha256-Ae0fNzYOAeCMrNFVhw4VvG/BkOMcguIMiBvLGt7wxEo="; 19 20 ldflags = [ 21 "-s" 22 "-w" 23 ]; 24 25 meta = { 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 = lib.licenses.mit; 30 maintainers = with lib.maintainers; [ fab ]; 31 mainProgram = "trickest"; 32 }; 33}