depot/third_party/nixpkgs/pkgs/by-name/ar/argocd-autopilot/package.nix

64 lines
1.6 KiB
Nix

{
lib,
buildGoModule,
fetchFromGitHub,
}:
buildGoModule rec {
pname = "argocd-autopilot";
version = "0.4.18";
src = fetchFromGitHub {
owner = "argoproj-labs";
repo = "argocd-autopilot";
rev = "v${version}";
sha256 = "sha256-vG2m0HhT9Pd9qzOAE2BbFf8zluH7btAVexznBCETvxA=";
};
vendorHash = "sha256-gyjxZiccaB5ZfEzxrYYYFx7Z6lhszzNL4ugltAMsfag=";
proxyVendor = true;
ldflags =
let
package_url = "github.com/argoproj-labs/argocd-autopilot/pkg/store";
in
[
"-s"
"-w"
"-X ${package_url}.binaryName=${pname}"
"-X ${package_url}.version=${src.rev}"
"-X ${package_url}.buildDate=unknown"
"-X ${package_url}.gitCommit=${src.rev}"
"-X ${package_url}.installationManifestsURL=github.com/argoproj-labs/argocd-autopilot/manifests/base?ref=${src.rev}"
"-X ${package_url}.installationManifestsNamespacedURL=github.com/argoproj-labs/argocd-autopilot/manifests/insecure?ref=${src.rev}"
];
subPackages = [ "cmd" ];
doInstallCheck = true;
installCheckPhase = ''
$out/bin/argocd-autopilot version | grep ${src.rev} > /dev/null
'';
installPhase = ''
runHook preInstall
mkdir -p $out/bin
install -Dm755 "$GOPATH/bin/cmd" -T $out/bin/argocd-autopilot
runHook postInstall
'';
meta = with lib; {
description = "ArgoCD Autopilot";
mainProgram = "argocd-autopilot";
downloadPage = "https://github.com/argoproj-labs/argocd-autopilot";
homepage = "https://argocd-autopilot.readthedocs.io/en/stable/";
license = licenses.asl20;
maintainers = with maintainers; [
sagikazarmark
bryanasdev000
];
};
}