nixpkgs/pkgs/by-name/e1/e1s/package.nix
zelkourban bd191d0748 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>
2024-05-12 18:08:00 +02:00

27 lines
712 B
Nix

{ 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 ];
};
}