biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / admin / cw / default.nix
blob4fb987abd5e691372aea2f6b3af207b45bc89426
1 { lib, buildGoModule, fetchFromGitHub }:
3 buildGoModule rec {
4   pname = "cw";
5   version = "4.1.1";
7   src = fetchFromGitHub {
8     owner = "lucagrulla";
9     repo = "cw";
10     rev = "v${version}";
11     sha256 = "sha256-JsWwvVEr7kSjUy0S6wVcn24Xyo4OHr5/uqmnjw6v+RI=";
12   };
14   vendorHash = "sha256-8L4q0IAvmNk5GCAC5agNfWFtokIkddO1Dec4m6/sWfg=";
16   meta = with lib; {
17     description = "Best way to tail AWS CloudWatch Logs from your terminal";
18     homepage = "https://github.com/lucagrulla/cw";
19     license = licenses.asl20;
20     maintainers = with maintainers; [ onthestairs ];
21     mainProgram = "cw";
22   };