nixpkgs/pkgs/by-name/e1/e1s/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
704 B
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub }:
let
pname = "e1s";
2024-06-18 01:32:08 +00:00
version = "1.0.38";
in
buildGoModule {
inherit pname version;
src = fetchFromGitHub {
owner = "keidarcy";
repo = "e1s";
rev = "refs/tags/v${version}";
2024-06-18 01:32:08 +00:00
hash = "sha256-OFnriW+rerVTyonuXe9qilR78Qok6QUYQvTDbsTi5L0=";
};
2024-06-03 00:18:20 +00:00
vendorHash = "sha256-oQVZ1SNXaXOngZazUVeWLvtZu17XvtIcrx+XC6PvGH0=";
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 ];
};
}