1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-19 03:47:13 -04:00
nixpkgs/pkgs/applications/networking/cluster/kubetail/default.nix

34 lines
1.1 KiB
Nix
Raw Normal View History

2018-07-24 15:43:26 -04:00
{ stdenv, fetchFromGitHub, lib, ... }:
stdenv.mkDerivation rec {
pname = "kubetail";
version = "1.6.10";
2018-07-24 15:43:26 -04:00
src = fetchFromGitHub {
owner = "johanhaleby";
repo = "kubetail";
2019-09-08 19:38:31 -04:00
rev = version;
sha256 = "0bg872n9fs6pl03rmjny9sgby718yznx9jwi5rx3hi4km3ha9j0b";
2018-07-24 15:43:26 -04:00
};
installPhase = ''
2018-11-26 16:15:39 -05:00
install -Dm755 kubetail "$out/bin/kubetail"
install -Dm755 completion/kubetail.bash "$out/share/bash-completion/completions/kubetail"
install -Dm755 completion/kubetail.fish "$out/share/fish/vendor_completions.d/kubetail.fish"
install -Dm755 completion/kubetail.zsh "$out/share/zsh/site-functions/_kubetail"
2018-07-24 15:43:26 -04:00
'';
meta = with lib; {
description = "Bash script to tail Kubernetes logs from multiple pods at the same time";
longDescription = ''
Bash script that enables you to aggregate (tail/follow) logs from
multiple pods into one stream. This is the same as running "kubectl logs
-f " but for multiple pods.
'';
homepage = "https://github.com/johanhaleby/kubetail";
2018-07-24 15:43:26 -04:00
license = licenses.asl20;
maintainers = with maintainers; [ kalbasit ];
platforms = platforms.all;
};
}