Skip to content

Commit 95c55e6

Browse files
authored
ecsk: init at 0.9.3 (#351894)
2 parents df8b26b + bca5688 commit 95c55e6

File tree

2 files changed

+37
-0
lines changed

2 files changed

+37
-0
lines changed

maintainers/maintainer-list.nix

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23471,6 +23471,12 @@
2347123471
githubId = 7121530;
2347223472
name = "Wolf Honoré";
2347323473
};
23474+
whtsht = {
23475+
email = "[email protected]";
23476+
github = "whtsht";
23477+
githubId = 85547207;
23478+
name = "Hinata Toma";
23479+
};
2347423480
wietsedv = {
2347523481
email = "[email protected]";
2347623482
github = "wietsedv";

pkgs/by-name/ec/ecsk/package.nix

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
{
2+
lib,
3+
fetchFromGitHub,
4+
buildGoModule,
5+
fetchgit,
6+
}:
7+
8+
buildGoModule rec {
9+
pname = "ecsk";
10+
version = "0.9.3";
11+
12+
src = fetchFromGitHub {
13+
owner = "yukiarrr";
14+
repo = "ecsk";
15+
rev = "refs/tags/v${version}";
16+
hash = "sha256-1nrV7NslOIXQDHsc7c5YfaWhoJ8kfkEQseoVVeENrHM=";
17+
fetchSubmodules = true;
18+
};
19+
20+
vendorHash = "sha256-Eyqpc7GyG/7u/I4tStADQikxcbIatjeAJN9wUDgzdFY=";
21+
22+
subPackages = [ "cmd/ecsk" ];
23+
24+
meta = {
25+
description = "Interactively call Amazon ECS APIs, copy files between ECS and local, and view logs";
26+
license = lib.licenses.mit;
27+
mainProgram = "ecsk";
28+
homepage = "https://github.com/yukiarrr/ecsk";
29+
maintainers = with lib.maintainers; [ whtsht ];
30+
};
31+
}

0 commit comments

Comments
 (0)