Merge pull request #288146 from maxbrunet/feat/regclient/shell-completions

This commit is contained in:
Sandro 2024-03-25 10:51:42 +01:00 committed by GitHub
commit 12600e854b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 45 additions and 11 deletions

View File

@ -1,4 +1,12 @@
{ stdenv, lib, buildGoModule, fetchFromGitHub }:
{ stdenv
, lib
, buildGoModule
, fetchFromGitHub
, installShellFiles
, lndir
, testers
, regclient
}:
let bins = [ "regbot" "regctl" "regsync" ]; in
@ -20,22 +28,48 @@ buildGoModule rec {
ldflags = [
"-s"
"-w"
"-X main.VCSTag=${tag}"
"-X github.com/regclient/regclient/internal/version.vcsTag=${tag}"
];
postInstall =
lib.concatStringsSep "\n" (
map (bin: ''
mkdir -p ''$${bin}/bin &&
mv $out/bin/${bin} ''$${bin}/bin/ &&
ln -s ''$${bin}/bin/${bin} $out/bin/
'') bins
);
nativeBuildInputs = [ installShellFiles lndir ];
postInstall = lib.concatMapStringsSep "\n"
(bin: ''
export bin=''$${bin}
export outputBin=bin
mkdir -p $bin/bin
mv $out/bin/${bin} $bin/bin
installShellCompletion --cmd ${bin} \
--bash <($bin/bin/${bin} completion bash) \
--fish <($bin/bin/${bin} completion fish) \
--zsh <($bin/bin/${bin} completion zsh)
lndir -silent $bin $out
unset bin outputBin
'')
bins;
passthru.tests = lib.mergeAttrsList (
map
(bin: {
"${bin}Version" = testers.testVersion {
package = regclient;
command = "${bin} version";
version = tag;
};
})
bins
);
__darwinAllowLocalNetworking = true;
meta = with lib; {
description = "Docker and OCI Registry Client in Go and tooling using those libraries";
homepage = "https://github.com/regclient/regclient";
license = licenses.asl20;
maintainers = with maintainers; [ ];
maintainers = with maintainers; [ maxbrunet ];
};
}