1{ lib, buildGoModule, fetchFromGitHub }:
2
3buildGoModule rec {
4 pname = "damon";
5 version = "unstable-2021-10-06";
6
7 src = fetchFromGitHub {
8 owner = "hashicorp";
9 repo = "damon";
10 rev = "542c79aecc44b1d0500f9cb9b2e13f07db1e2f35";
11 sha256 = "sha256-vg5PISNqk8N2nn7eABm+/7qzePDbKPkvovdZk2sZYsg=";
12 };
13
14 vendorSha256 = "sha256-/ZZxw6qEUJQUz3J0TxUYJECCcX276r74g0N2tV77+8I=";
15
16 meta = with lib; {
17 homepage = "https://github.com/hashicorp/damon";
18 license = licenses.mpl20;
19 description = "A terminal UI (TUI) for HashiCorp Nomad";
20 maintainers = teams.iog.members;
21 };
22}