kompose: init at 1.5.0 (#32026)

This commit is contained in:
Thomas Kim Pham 2017-11-25 15:24:52 +01:00 committed by Jörg Thalheim
parent 8136800f78
commit bd1864aec9
3 changed files with 26 additions and 0 deletions

View File

@ -642,6 +642,7 @@
theuni = "Christian Theune <ct@flyingcircus.io>";
ThomasMader = "Thomas Mader <thomas.mader@gmail.com>";
thoughtpolice = "Austin Seipp <aseipp@pobox.com>";
thpham = "Thomas Pham <thomas.pham@ithings.ch>";
timbertson = "Tim Cuthbertson <tim@gfxmonk.net>";
timokau = "Timo Kaufmann <timokau@zoho.com>";
titanous = "Jonathan Rudenberg <jonathan@titanous.com>";

View File

@ -0,0 +1,23 @@
{ stdenv, lib, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
name = "kompose-${version}";
version = "1.5.0";
goPackagePath = "github.com/kubernetes/kompose";
src = fetchFromGitHub {
rev = "v${version}";
owner = "kubernetes";
repo = "kompose";
sha256 = "1r5f8jbr2c1xxb5fpfgy23w4m30zahhmrw23jlk1hpx2w1pi1iyh";
};
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;
maintainers = with maintainers; [thpham];
platforms = platforms.unix;
};
}

View File

@ -19386,6 +19386,8 @@ with pkgs;
keynav = callPackage ../tools/X11/keynav { };
kompose = callPackage ../applications/networking/cluster/kompose { };
kops = callPackage ../applications/networking/cluster/kops { };
lilypond = callPackage ../misc/lilypond { guile = guile_1_8; };