Merge pull request #117434 from snoord/tanka-v0.15.0

tanka: 0.14.0 -> 0.15.0
This commit is contained in:
Robert Scott 2021-04-02 19:00:47 +01:00 committed by GitHub
commit 583ad8f62e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,20 +2,22 @@
buildGoModule rec { buildGoModule rec {
pname = "tanka"; pname = "tanka";
version = "0.14.0"; version = "0.15.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "grafana"; owner = "grafana";
repo = pname; repo = pname;
rev = "v${version}"; rev = "v${version}";
sha256 = "sha256-y2HhtYKgC9Y397dZ14eQoPZxqS1fTOXVD8B4wdLIHzM="; sha256 = "sha256-ckXvDB3TU9HAXowAAr/fRmX3mylVvPKW8I74R/vUaRY=";
}; };
vendorSha256 = "sha256-vpm2y/CxRNWkz6+AOMmmZH5AjRQWAa6WD5Fnx5lqJYw="; vendorSha256 = "sha256-vpm2y/CxRNWkz6+AOMmmZH5AjRQWAa6WD5Fnx5lqJYw=";
doCheck = false; doCheck = false;
buildFlagsArray = [ "-ldflags=-s -w -X main.Version=${version}" ]; subPackages = [ "cmd/tk" ];
buildFlagsArray = [ "-ldflags=-s -w -extldflags \"-static\" -X github.com/grafana/tanka/pkg/tanka.CURRENT_VERSION=v${version}" ];
nativeBuildInputs = [ installShellFiles ]; nativeBuildInputs = [ installShellFiles ];
@ -26,7 +28,7 @@ buildGoModule rec {
meta = with lib; { meta = with lib; {
description = "Flexible, reusable and concise configuration for Kubernetes"; description = "Flexible, reusable and concise configuration for Kubernetes";
homepage = "https://github.com/grafana/tanka/"; homepage = "https://tanka.dev";
license = licenses.asl20; license = licenses.asl20;
maintainers = with maintainers; [ mikefaille ]; maintainers = with maintainers; [ mikefaille ];
platforms = platforms.unix; platforms = platforms.unix;