nixpkgs/pkgs/applications/networking/cluster/kontemplate/default.nix
Vincent Ambo a604fc6fcb kontemplate: 1.4.0 -> 1.5.0
Moves to release version 1.5.0 (released 2018-05-08).
2018-05-08 12:09:12 +02:00

36 lines
1.1 KiB
Nix

{ lib, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
name = "kontemplate-${version}";
version = "1.5.0";
goPackagePath = "github.com/tazjin/kontemplate";
goDeps = ./deps.nix;
src = fetchFromGitHub {
owner = "tazjin";
repo = "kontemplate";
rev = "v${version}";
sha256 = "0k3yr0ypw6brj1lxqs041zsyi0r09113i0x3xfj48zv4ralq74b6";
};
meta = with lib; {
description = "Extremely simple Kubernetes resource templates";
homepage = "http://kontemplate.works";
downloadPage = "https://github.com/tazjin/kontemplate/releases";
license = licenses.gpl3;
maintainers = with maintainers; [ mbode tazjin ];
platforms = platforms.unix;
repositories.git = git://github.com/tazjin/kontemplate.git;
longDescription = ''
Kontemplate is a simple CLI tool that can take sets of
Kubernetes resource files with placeholders and insert values
per environment.
It can be used as a simple way of deploying the same set of
resources to different Kubernetes contexts with context-specific
configuration.
'';
};
}