mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 06:31:02 +00:00
551cee25b6
Moments after merging #49668 I realized that this is not hard to do correctly, so here it is now.
37 lines
1.1 KiB
Nix
37 lines
1.1 KiB
Nix
{ stdenv, lib, buildPackages, buildGoPackage, fetchFromGitHub }:
|
|
|
|
let isCrossBuild = stdenv.hostPlatform != stdenv.buildPlatform; in
|
|
|
|
buildGoPackage rec {
|
|
name = "stern-${version}";
|
|
version = "1.10.0";
|
|
|
|
goPackagePath = "github.com/wercker/stern";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "wercker";
|
|
repo = "stern";
|
|
rev = "${version}";
|
|
sha256 = "05wsif0pwh2v4rw4as36f1d9r149zzp2nyc0z4jwnj9nx58nfpll";
|
|
};
|
|
|
|
goDeps = ./deps.nix;
|
|
|
|
postInstall =
|
|
let stern = if isCrossBuild then buildPackages.stern else "$bin"; in
|
|
''
|
|
mkdir -p $bin/share/bash-completion/completions
|
|
${stern}/bin/stern --completion bash > $bin/share/bash-completion/completions/stern
|
|
mkdir -p $bin/share/zsh/site-functions
|
|
${stern}/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;
|
|
};
|
|
}
|