mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
43 lines
1 KiB
Nix
43 lines
1 KiB
Nix
{
|
|
lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
, installShellFiles
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "extism-cli";
|
|
version = "1.5.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "extism";
|
|
repo = "cli";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-kAdvQtc3FWXQffL1KRg4peeAJ+0439n609jTV9u11aA=";
|
|
};
|
|
|
|
vendorHash = "sha256-yQ6LGWNVWxrUqFskt22+G9OfbcKfHXh1bf4uNoATsxg=";
|
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
subPackages = [ "./extism" ];
|
|
|
|
doCheck = false; # Tests require network access
|
|
|
|
postInstall = ''
|
|
local INSTALL="$out/bin/extism"
|
|
installShellCompletion --cmd extism \
|
|
--bash <($out/bin/extism completion bash) \
|
|
--fish <($out/bin/extism completion fish) \
|
|
--zsh <($out/bin/extism completion zsh)
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Extism CLI is used to manage Extism installations";
|
|
homepage = "https://github.com/extism/cli";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ zshipko ];
|
|
mainProgram = "extism";
|
|
platforms = platforms.all;
|
|
};
|
|
}
|