mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 11:40:45 +00:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
24 lines
621 B
Nix
24 lines
621 B
Nix
{ 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=";
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/hashicorp/damon";
|
|
license = licenses.mpl20;
|
|
description = "Terminal UI (TUI) for HashiCorp Nomad";
|
|
maintainers = teams.iog.members;
|
|
mainProgram = "damon";
|
|
};
|
|
}
|