nixpkgs/pkgs/tools/admin/damon/default.nix

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

24 lines
623 B
Nix
Raw Normal View History

2021-10-12 17:45:52 +00:00
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "damon";
version = "unstable-2021-10-06";
src = fetchFromGitHub {
owner = "hashicorp";
repo = "damon";
rev = "542c79aecc44b1d0500f9cb9b2e13f07db1e2f35";
sha256 = "sha256-vg5PISNqk8N2nn7eABm+/7qzePDbKPkvovdZk2sZYsg=";
};
vendorHash = "sha256-/ZZxw6qEUJQUz3J0TxUYJECCcX276r74g0N2tV77+8I=";
2021-10-12 17:45:52 +00:00
meta = with lib; {
homepage = "https://github.com/hashicorp/damon";
license = licenses.mpl20;
description = "A terminal UI (TUI) for HashiCorp Nomad";
maintainers = teams.iog.members;
2024-02-11 02:19:15 +00:00
mainProgram = "damon";
2021-10-12 17:45:52 +00:00
};
}