lol
1{ lib, buildGoModule, fetchFromGitHub }:
2
3buildGoModule rec {
4 pname = "cw";
5 version = "4.1.1";
6
7 src = fetchFromGitHub {
8 owner = "lucagrulla";
9 repo = "cw";
10 rev = "v${version}";
11 sha256 = "sha256-JsWwvVEr7kSjUy0S6wVcn24Xyo4OHr5/uqmnjw6v+RI=";
12 };
13
14 vendorHash = "sha256-8L4q0IAvmNk5GCAC5agNfWFtokIkddO1Dec4m6/sWfg=";
15
16 meta = with lib; {
17 description = "The 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 };
22}