summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/networking/cluster/kompose
diff options
context:
space:
mode:
authorThomas Kim Pham <thomas.pham@ithings.ch>2017-11-25 15:24:52 +0100
committerJörg Thalheim <Mic92@users.noreply.github.com>2017-11-25 14:24:52 +0000
commitbd1864aec907e149c2295cad3cd5c0813e9c4f0a (patch)
tree9581be6fe336551e24394fee496ecf1ff349c699 /pkgs/applications/networking/cluster/kompose
parent8136800f78c431f170a39b9ed6f46ba0f2449b80 (diff)
kompose: init at 1.5.0 (#32026)
Diffstat (limited to 'pkgs/applications/networking/cluster/kompose')
-rw-r--r--pkgs/applications/networking/cluster/kompose/default.nix23
1 files changed, 23 insertions, 0 deletions
diff --git a/pkgs/applications/networking/cluster/kompose/default.nix b/pkgs/applications/networking/cluster/kompose/default.nix
new file mode 100644
index 000000000000..b2c97d1ea396
--- /dev/null
+++ b/pkgs/applications/networking/cluster/kompose/default.nix
@@ -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;
+ };
+}