mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-28 15:54:32 +00:00
32 lines
713 B
Nix
32 lines
713 B
Nix
|
{
|
||
|
lib,
|
||
|
fetchFromGitHub,
|
||
|
buildGoModule,
|
||
|
fetchgit,
|
||
|
}:
|
||
|
|
||
|
buildGoModule rec {
|
||
|
pname = "ecsk";
|
||
|
version = "0.9.3";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "yukiarrr";
|
||
|
repo = "ecsk";
|
||
|
rev = "refs/tags/v${version}";
|
||
|
hash = "sha256-1nrV7NslOIXQDHsc7c5YfaWhoJ8kfkEQseoVVeENrHM=";
|
||
|
fetchSubmodules = true;
|
||
|
};
|
||
|
|
||
|
vendorHash = "sha256-Eyqpc7GyG/7u/I4tStADQikxcbIatjeAJN9wUDgzdFY=";
|
||
|
|
||
|
subPackages = [ "cmd/ecsk" ];
|
||
|
|
||
|
meta = {
|
||
|
description = "Interactively call Amazon ECS APIs, copy files between ECS and local, and view logs";
|
||
|
license = lib.licenses.mit;
|
||
|
mainProgram = "ecsk";
|
||
|
homepage = "https://github.com/yukiarrr/ecsk";
|
||
|
maintainers = with lib.maintainers; [ whtsht ];
|
||
|
};
|
||
|
}
|