about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/networking/cluster/hashi-up/default.nix
blob: 583a0c32b1d1bc29c03d1828c37f5ccc2c6955a4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ lib
, buildGoModule
, fetchFromGitHub
}:

buildGoModule rec {
  pname = "hashi-up";
  version = "0.16.0";

  src = fetchFromGitHub {
    owner = "jsiebens";
    repo = pname;
    rev = "v${version}";
    sha256 = "sha256-PdZ8X2pJ5TfT0bJ4/P/XbMTv+yyL5/1AxIFHnL/qNcg=";
  };

  vendorHash = "sha256-dircE3WlDPsPnF+0wT5RG/c4hC8qPs8NaSGM5wpvVlM=";

  meta = with lib; {
    description = "A lightweight utility to install HashiCorp Consul, Nomad, or Vault on any remote Linux host";
    homepage = "https://github.com/jsiebens/hashi-up";
    license = licenses.mit;
    maintainers = with maintainers; [ lucperkins ];
  };
}