mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
40 lines
1 KiB
Nix
40 lines
1 KiB
Nix
{ stdenv, lib, buildPackages, buildGoPackage, fetchFromGitHub, installShellFiles }:
|
|
|
|
let isCrossBuild = stdenv.hostPlatform != stdenv.buildPlatform; in
|
|
|
|
buildGoPackage rec {
|
|
pname = "stern";
|
|
version = "1.11.0";
|
|
|
|
goPackagePath = "github.com/wercker/stern";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "wercker";
|
|
repo = "stern";
|
|
rev = version;
|
|
sha256 = "0xndlq0ks8flzx6rdd4lnkxpkbvdy9sj1jwys5yj7p989ls8by3n";
|
|
};
|
|
|
|
deleteVendor = true;
|
|
goDeps = ./deps.nix;
|
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
postInstall =
|
|
let stern = if isCrossBuild then buildPackages.stern else "$out"; in
|
|
''
|
|
for shell in bash zsh; do
|
|
${stern}/bin/stern --completion $shell > stern.$shell
|
|
installShellCompletion stern.$shell
|
|
done
|
|
'';
|
|
|
|
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;
|
|
};
|
|
}
|