zowoq 2020-01-31 20:29:24 +10:00
parent a21c2fa3ea
commit c508408268

View File

@ -1,8 +1,8 @@
{ stdenv, buildGoPackage, fetchFromGitHub }: { stdenv, buildGoPackage, fetchFromGitHub, installShellFiles }:
buildGoPackage rec { buildGoPackage rec {
pname = "kompose"; pname = "kompose";
version = "1.18.0"; version = "1.20.0";
goPackagePath = "github.com/kubernetes/kompose"; goPackagePath = "github.com/kubernetes/kompose";
@ -10,9 +10,16 @@ buildGoPackage rec {
rev = "v${version}"; rev = "v${version}";
owner = "kubernetes"; owner = "kubernetes";
repo = "kompose"; repo = "kompose";
sha256 = "1hb4bs710n9fghphhfakwg42wjscf136dcr05zwwfg7iyqx2cipc"; sha256 = "1zgxm3zcxapav4jxh1r597rmxmlxcgns1l8w632ch7d90x5ihvll";
}; };
nativeBuildInputs = [ installShellFiles ];
postInstall = ''
$bin/bin/kompose completion bash > kompose.bash
$bin/bin/kompose completion zsh > kompose.zsh
installShellCompletion kompose.{bash,zsh}
'';
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "A tool to help users who are familiar with docker-compose move to Kubernetes"; description = "A tool to help users who are familiar with docker-compose move to Kubernetes";
homepage = https://github.com/kubernetes/kompose; homepage = https://github.com/kubernetes/kompose;