Merge pull request #161206 from onthestairs/init-cw
This commit is contained in:
commit
9f6f67b10a
@ -9605,6 +9605,12 @@
|
||||
githubId = 757752;
|
||||
name = "Jonas Heinrich";
|
||||
};
|
||||
onthestairs = {
|
||||
email = "austinplatt@gmail.com";
|
||||
github = "onthestairs";
|
||||
githubId = 915970;
|
||||
name = "Austin Platt";
|
||||
};
|
||||
ony = {
|
||||
name = "Mykola Orliuk";
|
||||
email = "virkony@gmail.com";
|
||||
|
22
pkgs/tools/admin/cw/default.nix
Normal file
22
pkgs/tools/admin/cw/default.nix
Normal file
@ -0,0 +1,22 @@
|
||||
{ buildGoModule, fetchFromGitHub, lib, stdenv }:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "cw";
|
||||
version = "4.1.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "lucagrulla";
|
||||
repo = "cw";
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-JsWwvVEr7kSjUy0S6wVcn24Xyo4OHr5/uqmnjw6v+RI=";
|
||||
};
|
||||
|
||||
vendorSha256 = "sha256-8L4q0IAvmNk5GCAC5agNfWFtokIkddO1Dec4m6/sWfg=";
|
||||
|
||||
meta = with lib; {
|
||||
description = "The best way to tail AWS CloudWatch Logs from your terminal";
|
||||
homepage = "https://github.com/lucagrulla/cw";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ onthestairs ];
|
||||
};
|
||||
}
|
@ -2093,6 +2093,8 @@ with pkgs;
|
||||
|
||||
crystfel-headless = callPackage ../applications/science/physics/crystfel { withGui = false; };
|
||||
|
||||
cw = callPackage ../tools/admin/cw { };
|
||||
|
||||
ec2-api-tools = callPackage ../tools/virtualization/ec2-api-tools { };
|
||||
|
||||
ec2-ami-tools = callPackage ../tools/virtualization/ec2-ami-tools { };
|
||||
|
Loading…
Reference in New Issue
Block a user