26 lines
662 B
Nix
26 lines
662 B
Nix
{ lib, buildGoPackage, fetchFromGitHub }:
|
|
|
|
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;
|
|
|
|
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;
|
|
};
|
|
}
|