summary refs log tree commit diff
path: root/pkgs/tools/admin/damon/default.nix
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2021-10-13 00:02:00 +0000
committerGitHub <noreply@github.com>2021-10-13 00:02:00 +0000
commite69f5a133fb4dc6dab03549db2f3c020602b854a (patch)
tree2beb3ef6cf7d8bfbd7017f8af2577003b16325df /pkgs/tools/admin/damon/default.nix
parent12dd9090127fb08247fd7379182b8b047f3a6320 (diff)
parent87ef3e2688883e03eabf7cd9f096742f445a50fd (diff)
downloadnixpkgs-e69f5a133fb4dc6dab03549db2f3c020602b854a.tar
nixpkgs-e69f5a133fb4dc6dab03549db2f3c020602b854a.tar.gz
nixpkgs-e69f5a133fb4dc6dab03549db2f3c020602b854a.tar.bz2
nixpkgs-e69f5a133fb4dc6dab03549db2f3c020602b854a.tar.lz
nixpkgs-e69f5a133fb4dc6dab03549db2f3c020602b854a.tar.xz
nixpkgs-e69f5a133fb4dc6dab03549db2f3c020602b854a.tar.zst
nixpkgs-e69f5a133fb4dc6dab03549db2f3c020602b854a.zip
Merge staging-next into staging
Diffstat (limited to 'pkgs/tools/admin/damon/default.nix')
-rw-r--r--pkgs/tools/admin/damon/default.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/tools/admin/damon/default.nix b/pkgs/tools/admin/damon/default.nix
new file mode 100644
index 00000000000..10687bce090
--- /dev/null
+++ b/pkgs/tools/admin/damon/default.nix
@@ -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;
+  };
+}