Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
117 lines
2.9 KiB
Nix
117 lines
2.9 KiB
Nix
{
|
|
lib,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
installShellFiles,
|
|
nix-update-script,
|
|
stdenv,
|
|
fetchYarnDeps,
|
|
yarnConfigHook,
|
|
yarnBuildHook,
|
|
nodejs,
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "argocd";
|
|
version = "3.1.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "argoproj";
|
|
repo = "argo-cd";
|
|
rev = "v${version}";
|
|
hash = "sha256-xySxnRw8MvMi4BJ/h8+4Lhf2ontC05hAliMG2e3xnQg=";
|
|
};
|
|
|
|
ui = stdenv.mkDerivation {
|
|
pname = "${pname}-ui";
|
|
inherit version;
|
|
src = src + "/ui";
|
|
|
|
offlineCache = fetchYarnDeps {
|
|
yarnLock = "${src}/ui/yarn.lock";
|
|
hash = "sha256-ekhSPWzIgFhwSw0bIlBqu8LTYk3vuJ9VM8eHc3mnHGM=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
yarnConfigHook
|
|
yarnBuildHook
|
|
nodejs
|
|
];
|
|
|
|
postInstall = ''
|
|
mkdir -p $out
|
|
cp -r dist $out/dist
|
|
'';
|
|
};
|
|
|
|
proxyVendor = true; # darwin/linux hash mismatch
|
|
vendorHash = "sha256-oI0N6V8enziJK21VCgQ4KUOWqbC5TcZd3QnWiTTeTHQ=";
|
|
|
|
# Set target as ./cmd per cli-local
|
|
# https://github.com/argoproj/argo-cd/blob/master/Makefile
|
|
subPackages = [ "cmd" ];
|
|
|
|
ldflags =
|
|
let
|
|
packageUrl = "github.com/argoproj/argo-cd/v3/common";
|
|
in
|
|
[
|
|
"-s"
|
|
"-w"
|
|
"-X ${packageUrl}.version=${version}"
|
|
"-X ${packageUrl}.buildDate=unknown"
|
|
"-X ${packageUrl}.gitCommit=${src.rev}"
|
|
"-X ${packageUrl}.gitTag=${src.rev}"
|
|
"-X ${packageUrl}.gitTreeState=clean"
|
|
];
|
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
preBuild = ''
|
|
cp -r ${ui}/dist ./ui
|
|
stat ./ui/dist/app/index.html # Sanity check
|
|
'';
|
|
|
|
# set ldflag for kubectlVersion since it is needed for argo
|
|
# Per https://github.com/search?q=repo%3Aargoproj%2Fargo-cd+%22KUBECTL_VERSION%3D%22+path%3AMakefile&type=code
|
|
prePatch = ''
|
|
export KUBECTL_VERSION=$(grep 'k8s.io/kubectl v' go.mod | cut -f 2 -d " " | cut -f 1 -d "=" )
|
|
echo using $KUBECTL_VERSION
|
|
ldflags="''${ldflags} -X github.com/argoproj/argo-cd/v3/common.kubectlVersion=''${KUBECTL_VERSION}"
|
|
'';
|
|
installPhase = ''
|
|
runHook preInstall
|
|
mkdir -p $out/bin
|
|
install -Dm755 "$GOPATH/bin/cmd" -T $out/bin/argocd
|
|
runHook postInstall
|
|
'';
|
|
|
|
doInstallCheck = true;
|
|
installCheckPhase = ''
|
|
$out/bin/argocd version --client | grep ${src.rev} > /dev/null
|
|
'';
|
|
|
|
postInstall = lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) ''
|
|
installShellCompletion --cmd argocd \
|
|
--bash <($out/bin/argocd completion bash) \
|
|
--fish <($out/bin/argocd completion fish) \
|
|
--zsh <($out/bin/argocd completion zsh)
|
|
'';
|
|
|
|
passthru.updateScript = nix-update-script { };
|
|
|
|
meta = with lib; {
|
|
description = "Declarative continuous deployment for Kubernetes";
|
|
mainProgram = "argocd";
|
|
downloadPage = "https://github.com/argoproj/argo-cd";
|
|
homepage = "https://argo-cd.readthedocs.io/en/stable/";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [
|
|
shahrukh330
|
|
bryanasdev000
|
|
qjoly
|
|
FKouhai
|
|
];
|
|
};
|
|
}
|