Merge #310602: init e1s at 1.0.34

This commit is contained in:
nicoo 2024-05-13 00:23:16 +00:00 committed by GitHub
commit e56d6f0cca
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 32 additions and 0 deletions

View File

@ -22587,6 +22587,12 @@
fingerprint = "065A 0A98 FE61 E1C1 41B0 AFE7 64FA BC62 F457 2875";
}];
};
zelkourban = {
name = "zelkourban";
email = "zelo.urban@gmail.com";
github = "zelkourban";
githubId = 33812622;
};
zendo = {
name = "zendo";
email = "linzway@qq.com";

View File

@ -0,0 +1,26 @@
{ stdenv, lib, buildGoModule, fetchFromGitHub }:
let
pname = "e1s";
version = "1.0.34";
in
buildGoModule {
inherit pname version;
src = fetchFromGitHub {
owner = "keidarcy";
repo = "e1s";
rev = "refs/tags/v${version}";
hash = "sha256-fxo7TQjFrp2BbXz7bwMC5AuacKpyi5UmAMEVBmR91ko=";
};
vendorHash = "sha256-pM6win2W6HqjIg9QBblDl3ptKEI6sANliXkpwlFnTb0=";
meta = with lib; {
description = "Easily Manage AWS ECS Resources in Terminal 🐱";
homepage = "https://github.com/keidarcy/e1s";
changelog = "https://github.com/derailed/e1s/releases/tag/v${version}";
license = licenses.mit;
mainProgram = "e1s";
maintainers = with maintainers; [ zelkourban ];
};
}