summary refs log tree commit diff
path: root/pkgs/applications/networking/cluster/kontemplate/default.nix
blob: aa5f86633318d0a19ef9422da84cad7e284d981f (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
26
{ stdenv, buildGoPackage, fetchFromGitHub }:

buildGoPackage rec {
  name = "kontemplate-${version}";
  version = "1.3.0";

  goPackagePath = "github.com/tazjin/kontemplate";

  src = fetchFromGitHub {
    rev = "v${version}";
    owner = "tazjin";
    repo = "kontemplate";
    sha256 = "0g9hs9gwwkng9vbnv07ibhll0kggdprffpmhlbz9nmv81w2z3myi";
  };

  goDeps = ./deps.nix;

  meta = with stdenv.lib; {
    description = "Extremely simple Kubernetes resource templates";
    homepage = http://kontemplate.works;
    license = licenses.gpl3;
    maintainers = with maintainers; [ mbode ];
    platforms = platforms.unix;
    repositories.git = git://github.com/tazjin/kontemplate.git;
  };
}