hashi-up: init at 0.16.0

authored by Luc Perkins and committed by zowoq 388d6c1c 052662fa

+27
+25
pkgs/applications/networking/cluster/hashi-up/default.nix
···
··· 1 + { lib 2 + , buildGoModule 3 + , fetchFromGitHub 4 + }: 5 + 6 + buildGoModule rec { 7 + pname = "hashi-up"; 8 + version = "0.16.0"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "jsiebens"; 12 + repo = pname; 13 + rev = "v${version}"; 14 + sha256 = "sha256-PdZ8X2pJ5TfT0bJ4/P/XbMTv+yyL5/1AxIFHnL/qNcg="; 15 + }; 16 + 17 + vendorSha256 = "sha256-dircE3WlDPsPnF+0wT5RG/c4hC8qPs8NaSGM5wpvVlM="; 18 + 19 + meta = with lib; { 20 + description = "A lightweight utility to install HashiCorp Consul, Nomad, or Vault on any remote Linux host"; 21 + homepage = "https://github.com/jsiebens/hashi-up"; 22 + license = licenses.mit; 23 + maintainers = with maintainers; [ lucperkins ]; 24 + }; 25 + }
+2
pkgs/top-level/all-packages.nix
··· 23166 23167 hashi-ui = callPackage ../servers/hashi-ui {}; 23168 23169 hasura-graphql-engine = haskell.lib.compose.justStaticExecutables haskell.packages.ghc810.graphql-engine; 23170 23171 hasura-cli = callPackage ../servers/hasura/cli.nix { };
··· 23166 23167 hashi-ui = callPackage ../servers/hashi-ui {}; 23168 23169 + hashi-up = callPackage ../applications/networking/cluster/hashi-up { }; 23170 + 23171 hasura-graphql-engine = haskell.lib.compose.justStaticExecutables haskell.packages.ghc810.graphql-engine; 23172 23173 hasura-cli = callPackage ../servers/hasura/cli.nix { };