opensearch-cli: init at 1.2.0
This commit is contained in:
parent
028b6592f4
commit
143fd64aea
2 changed files with 40 additions and 1 deletions
38
pkgs/by-name/op/opensearch-cli/package.nix
Normal file
38
pkgs/by-name/op/opensearch-cli/package.nix
Normal file
|
@ -0,0 +1,38 @@
|
|||
{ lib
|
||||
, buildGoModule
|
||||
, fetchFromGitHub
|
||||
, installShellFiles
|
||||
}:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "opensearch-cli";
|
||||
version = "1.2.0";
|
||||
src = fetchFromGitHub {
|
||||
repo = "opensearch-cli";
|
||||
owner = "opensearch-project";
|
||||
rev = version;
|
||||
hash = "sha256-Ah64a9hpc2tnIXiwxg/slE6fUTAoHv9koNmlUHrVj/s=";
|
||||
};
|
||||
|
||||
vendorHash = "sha256-r3Bnud8pd0Z9XmGkj9yxRW4U/Ry4U8gvVF4pAdN14lQ=";
|
||||
|
||||
nativeBuildInputs = [ installShellFiles ];
|
||||
|
||||
postInstall = ''
|
||||
export HOME="$(mktemp -d)"
|
||||
installShellCompletion --cmd opensearch-cli \
|
||||
--bash <($out/bin/opensearch-cli completion bash) \
|
||||
--zsh <($out/bin/opensearch-cli completion zsh) \
|
||||
--fish <($out/bin/opensearch-cli completion fish)
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "A full-featured command line interface (CLI) for OpenSearch.";
|
||||
homepage = "https://github.com/opensearch-project/opensearch-cli";
|
||||
license = lib.licenses.asl20;
|
||||
mainProgram = "opensearch-cli";
|
||||
maintainers = with lib.maintainers; [ shyim ];
|
||||
platforms = lib.platforms.unix;
|
||||
sourceProvenance = with lib.sourceTypes; [ fromSource ];
|
||||
};
|
||||
}
|
|
@ -41,7 +41,8 @@ stdenvNoCC.mkDerivation (finalAttrs: {
|
|||
--set JAVA_HOME "${jre_headless}"
|
||||
|
||||
wrapProgram $out/bin/opensearch-plugin --set JAVA_HOME "${jre_headless}"
|
||||
wrapProgram $out/bin/opensearch-cli --set JAVA_HOME "${jre_headless}"
|
||||
|
||||
rm $out/bin/opensearch-cli
|
||||
|
||||
runHook postInstall
|
||||
'';
|
||||
|
|
Loading…
Reference in a new issue