mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 18:03:04 +00:00
bd191d0748
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>
27 lines
712 B
Nix
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 ];
|
|
};
|
|
}
|