summary refs log tree commit diff
path: root/pkgs/applications/networking/cluster/stern/default.nix
blob: c7b90d05ff2f927f26663957d2aa98fd46ec1cd1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ lib, buildGoPackage, fetchFromGitHub }:

buildGoPackage rec {
  name = "stern-${version}";
  version = "1.8.0";

  goPackagePath = "github.com/wercker/stern";

  src = fetchFromGitHub {
    owner = "wercker";
    repo = "stern";
    rev = "${version}";
    sha256 = "14ccgb41ca2gym7wab0q02ap8g94nhfaihs41qky4wnsfv6j1zc8";
  };

  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;
    };
}