summary refs log tree commit diff
path: root/pkgs/tools/virtualization/marathonctl/default.nix
blob: c557361f122f6d41731182c90290f1d899dfec0d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ stdenv, buildGoPackage, fetchFromGitHub }:

buildGoPackage {
  pname = "marathonctl-unstable";
  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 ];
  };
}