stern: Include bash & zsh completion support (#49668)

This commit is contained in:
Benjamin Staffin 2018-11-26 14:41:04 -05:00 committed by GitHub
parent 5294194fe2
commit 5087dcf247
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,4 +1,4 @@
{ lib, buildGoPackage, fetchFromGitHub }:
{ stdenv, lib, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
name = "stern-${version}";
@ -15,11 +15,20 @@ buildGoPackage rec {
goDeps = ./deps.nix;
meta = with lib; {
description = "Multi pod and container log tailing for Kubernetes";
homepage = "https://github.com/wercker/stern";
license = licenses.asl20;
maintainers = with maintainers; [ mbode ];
platforms = platforms.unix;
};
# Only build shell completion if we're _not_ cross compiling,
# because it requires executing the compiled stern binary.
postInstall = lib.optionalString (stdenv.buildPlatform == stdenv.hostPlatform) ''
mkdir -p $bin/share/bash-completion/completions
$bin/bin/stern --completion bash > $bin/share/bash-completion/completions/stern
mkdir -p $bin/share/zsh/site-functions
$bin/bin/stern --completion zsh > $bin/share/zsh/site-functions/_stern
'';
meta = with lib; {
description = "Multi pod and container log tailing for Kubernetes";
homepage = "https://github.com/wercker/stern";
license = licenses.asl20;
maintainers = with maintainers; [ mbode ];
platforms = platforms.unix;
};
}