Skip to content

Commit

Permalink
marathonctl: init at 2017-03-06
Browse files Browse the repository at this point in the history
  • Loading branch information
manveru authored and rycee committed Mar 17, 2017
1 parent ca3fb4d commit 6cc1200
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 0 deletions.
25 changes: 25 additions & 0 deletions pkgs/tools/virtualization/marathonctl/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{ stdenv, buildGoPackage, fetchFromGitHub }:

buildGoPackage rec {
name = "marathonctl-unstable-${version}";
version = "2017-03-06";

goPackagePath = "github.com/shoenig/marathonctl";
subPackages = [ "." ];
goDeps = ./deps.nix;

src = fetchFromGitHub {
owner = "shoenig";
repo = "marathonctl";
rev = "0867e66551fff5d81f25959baf914a8ee11a3a8b";
sha256 = "1fcc54hwpa8s3kz4gn26mc6nrv6zjrw869331nvm47khi23gpmxw";
};

meta = with stdenv.lib; {
homepage = https://github.com/shoenig/marathonctl;
description = "CLI tool for Marathon";
platforms = platforms.all;
license = licenses.mit;
maintainers = with maintainers; [ manveru ];
};
}
12 changes: 12 additions & 0 deletions pkgs/tools/virtualization/marathonctl/deps.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# This file was generated by go2nix.
[
{
goPackagePath = "github.com/shoenig/config";
fetch = {
type = "git";
url = "https://github.com/shoenig/config";
rev = "7d793e7ad7f175ef22743b1ea38acee8267788db";
sha256 = "1dhcv1j5xk30kj73dfnx3xqx8mcvk9r8ywp9khgf2kq6wh9sm1qr";
};
}
]
1 change: 1 addition & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -14396,6 +14396,7 @@ with pkgs;
makeself = callPackage ../applications/misc/makeself { };

marathon = callPackage ../applications/networking/cluster/marathon { };
marathonctl = callPackage ../tools/virtualization/marathonctl { } ;

marp = callPackage ../applications/office/marp { };

Expand Down

0 comments on commit 6cc1200

Please sign in to comment.