ecsk: init at 0.9.3 (#351894)

This commit is contained in:
Aleksana 2024-11-12 22:49:01 +08:00 committed by GitHub
commit 95c55e6d11
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 37 additions and 0 deletions

View File

@ -23471,6 +23471,12 @@
githubId = 7121530;
name = "Wolf Honoré";
};
whtsht = {
email = "whiteshirt0079@gmail.com";
github = "whtsht";
githubId = 85547207;
name = "Hinata Toma";
};
wietsedv = {
email = "wietsedv@proton.me";
github = "wietsedv";

View File

@ -0,0 +1,31 @@
{
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 ];
};
}