mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 04:46:43 +00:00
f8c4a98e8e
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"([Tt]he)? ' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Tt]he (.)/\1\U\2/'
24 lines
602 B
Nix
24 lines
602 B
Nix
{ lib, buildGoModule, fetchFromGitHub }:
|
|
|
|
buildGoModule rec {
|
|
pname = "cw";
|
|
version = "4.1.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "lucagrulla";
|
|
repo = "cw";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-JsWwvVEr7kSjUy0S6wVcn24Xyo4OHr5/uqmnjw6v+RI=";
|
|
};
|
|
|
|
vendorHash = "sha256-8L4q0IAvmNk5GCAC5agNfWFtokIkddO1Dec4m6/sWfg=";
|
|
|
|
meta = with lib; {
|
|
description = "Best way to tail AWS CloudWatch Logs from your terminal";
|
|
homepage = "https://github.com/lucagrulla/cw";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ onthestairs ];
|
|
mainProgram = "cw";
|
|
};
|
|
}
|