mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-17 06:06:13 +03:00
marathonctl: init at 2017-03-06
This commit is contained in:
parent
ca3fb4d1d4
commit
6cc1200bd5
25
pkgs/tools/virtualization/marathonctl/default.nix
Normal file
25
pkgs/tools/virtualization/marathonctl/default.nix
Normal file
@ -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
pkgs/tools/virtualization/marathonctl/deps.nix
Normal file
12
pkgs/tools/virtualization/marathonctl/deps.nix
Normal file
@ -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";
|
||||
};
|
||||
}
|
||||
]
|
@ -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 { };
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user