Merge pull request #141384 from jonringer/add-damon

damon: init at unstable-2021-10-12
This commit is contained in:
Timothy DeHerrera 2021-10-12 13:10:44 -06:00 committed by GitHub
commit 161b9c2614
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 25 additions and 1 deletions

View File

@ -137,7 +137,7 @@ with lib.maintainers; {
cleverca22
disassembler
jonringer
maveru
manveru
nrdxp
];
scope = "Input-Output Global employees, which maintain critical software";

View File

@ -0,0 +1,22 @@
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "damon";
version = "unstable-2021-10-06";
src = fetchFromGitHub {
owner = "hashicorp";
repo = "damon";
rev = "542c79aecc44b1d0500f9cb9b2e13f07db1e2f35";
sha256 = "sha256-vg5PISNqk8N2nn7eABm+/7qzePDbKPkvovdZk2sZYsg=";
};
vendorSha256 = "sha256-/ZZxw6qEUJQUz3J0TxUYJECCcX276r74g0N2tV77+8I=";
meta = with lib; {
homepage = "https://github.com/hashicorp/damon";
license = licenses.mpl20;
description = "A terminal UI (TUI) for HashiCorp Nomad";
maintainers = teams.iog.members;
};
}

View File

@ -2544,6 +2544,8 @@ with pkgs;
dale = callPackage ../development/compilers/dale { };
damon = callPackage ../tools/admin/damon { };
dante = callPackage ../servers/dante { };
dapr-cli = callPackage ../development/tools/dapr/cli {};