tailspin: init at 0.1
This commit is contained in:
parent
f30f5d82bc
commit
2b34a5c5fc
2 changed files with 32 additions and 0 deletions
30
pkgs/tools/misc/tailspin/default.nix
Normal file
30
pkgs/tools/misc/tailspin/default.nix
Normal file
|
@ -0,0 +1,30 @@
|
|||
{ lib
|
||||
, buildGoModule
|
||||
, fetchFromGitHub
|
||||
}:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "tailspin";
|
||||
version = "0.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "bensadeh";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "sha256-ReWgbAmEGpNOv6QArNT+eWaty88tChhH1nhH0vZe2/E=";
|
||||
};
|
||||
|
||||
vendorSha256 = "sha256-rZJO/TSGrYwrtIKQpKhZZqnXY6IHNyjS26vBDv/iQ34=";
|
||||
|
||||
CGO_ENABLED = 0;
|
||||
|
||||
subPackages = [ "." ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "A log file highlighter and a drop-in replacement for `tail -f`";
|
||||
homepage = "https://github.com/bensadeh/tailspin";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ dit7ya ];
|
||||
mainProgram = "spin";
|
||||
};
|
||||
}
|
|
@ -24348,6 +24348,8 @@ with pkgs;
|
|||
|
||||
tailscale = callPackage ../servers/tailscale { };
|
||||
|
||||
tailspin = callPackage ../tools/misc/tailspin { };
|
||||
|
||||
thanos = callPackage ../servers/monitoring/thanos { };
|
||||
|
||||
trafficserver = callPackage ../servers/http/trafficserver { };
|
||||
|
|
Loading…
Reference in a new issue