2018-07-21 01:44:44 +01:00
|
|
|
{ stdenv, buildGoPackage, fetchFromGitHub }:
|
2017-11-25 14:24:52 +00:00
|
|
|
|
|
|
|
buildGoPackage rec {
|
|
|
|
name = "kompose-${version}";
|
2019-03-23 23:55:09 +00:00
|
|
|
version = "1.18.0";
|
2017-11-25 14:24:52 +00:00
|
|
|
|
|
|
|
goPackagePath = "github.com/kubernetes/kompose";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
rev = "v${version}";
|
|
|
|
owner = "kubernetes";
|
|
|
|
repo = "kompose";
|
2019-03-23 23:55:09 +00:00
|
|
|
sha256 = "1hb4bs710n9fghphhfakwg42wjscf136dcr05zwwfg7iyqx2cipc";
|
2017-11-25 14:24:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A tool to help users who are familiar with docker-compose move to Kubernetes";
|
|
|
|
homepage = https://github.com/kubernetes/kompose;
|
|
|
|
license = licenses.asl20;
|
2019-03-23 23:55:09 +00:00
|
|
|
maintainers = with maintainers; [ thpham vdemeester ];
|
2017-11-25 14:24:52 +00:00
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|