about summary refs log tree commit diff
path: root/pkgs/by-name/e1
diff options
context:
space:
mode:
authorzelkourban <33812622+zelkourban@users.noreply.github.com>2024-05-10 16:16:36 +0200
committerZeljko Urban <33812622+zelkourban@users.noreply.github.com>2024-05-12 18:08:00 +0200
commitbd191d074868349ef52ffad503b9c452cd8c6e00 (patch)
tree68c9fe7123dbaacb1e9cd73a9165716434f26020 /pkgs/by-name/e1
parent83e01d7799db285a6902a978cfa7c226eb695126 (diff)
e1s: init at 1.0.34
e1s: refactor

Remove unused comment

e1s: refactor

Using rec is discouraged, you can learn more here: https://nix.dev/guides/best-practices#recursive-attribute-set-rec

Co-authored-by: DontEatOreo <57304299+DontEatOreo@users.noreply.github.com>

e1s: refactor

make sure we're getting the tag and not the branch

Co-authored-by: DontEatOreo <57304299+DontEatOreo@users.noreply.github.com>

e1s: refactor

fix eval

Co-authored-by: éclairevoyant <848000+eclairevoyant@users.noreply.github.com>
Diffstat (limited to 'pkgs/by-name/e1')
-rw-r--r--pkgs/by-name/e1/e1s/package.nix26
1 files changed, 26 insertions, 0 deletions
diff --git a/pkgs/by-name/e1/e1s/package.nix b/pkgs/by-name/e1/e1s/package.nix
new file mode 100644
index 0000000000000..b13d5ff947e44
--- /dev/null
+++ b/pkgs/by-name/e1/e1s/package.nix
@@ -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 ];
+  };
+}