mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-15 10:12:58 +00:00
75 lines
2.1 KiB
Nix
75 lines
2.1 KiB
Nix
{ lib, buildGoModule, fetchFromGitHub, packr, makeWrapper, installShellFiles, helm, kustomize }:
|
|
|
|
buildGoModule rec {
|
|
pname = "argocd";
|
|
version = "2.1.2";
|
|
commit = "7af9dfb3524c13e941ab604e36e49a617fe47d2e";
|
|
tag = "v${version}";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "argoproj";
|
|
repo = "argo-cd";
|
|
rev = tag;
|
|
sha256 = "1pr48z1qhv7xxnllr00zz2v0ygxmq2hjdyk0j3zazflnqr2mc596";
|
|
};
|
|
|
|
vendorSha256 = "sha256-N45yRlBGZ/c9ve2YPcWA26pylV8hzxjPh6evKtkgnoc=";
|
|
|
|
nativeBuildInputs = [ packr makeWrapper installShellFiles ];
|
|
|
|
# run packr to embed assets
|
|
preBuild = ''
|
|
packr
|
|
'';
|
|
|
|
ldflags =
|
|
let package_url = "github.com/argoproj/argo-cd/v2/common"; in
|
|
[
|
|
"-s" "-w"
|
|
"-X ${package_url}.version=${version}"
|
|
"-X ${package_url}.buildDate=unknown"
|
|
"-X ${package_url}.gitCommit=${commit}"
|
|
"-X ${package_url}.gitTag=${tag}"
|
|
"-X ${package_url}.gitTreeState=clean"
|
|
];
|
|
|
|
# Test is disabled because ksonnet is missing from nixpkgs.
|
|
# Log: https://gist.github.com/superherointj/79cbdc869dfd44d28a10dc6746ecb3f9
|
|
doCheck = false;
|
|
checkInputs = [
|
|
helm
|
|
kustomize
|
|
#ksonnet
|
|
];
|
|
|
|
doInstallCheck = true;
|
|
installCheckPhase = ''
|
|
$out/bin/argocd version --client | grep ${tag} > /dev/null
|
|
$out/bin/argocd-util version --client | grep ${tag} > /dev/null
|
|
'';
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
mkdir -p $out/bin
|
|
install -Dm755 "$GOPATH/bin/cmd" -T $out/bin/argocd
|
|
runHook postInstall
|
|
'';
|
|
|
|
postInstall = ''
|
|
for appname in argocd-util argocd-server argocd-repo-server argocd-application-controller argocd-dex ; do
|
|
makeWrapper $out/bin/argocd $out/bin/$appname --set ARGOCD_BINARY_NAME $appname
|
|
done
|
|
installShellCompletion --cmd argocd \
|
|
--bash <($out/bin/argocd completion bash) \
|
|
--zsh <($out/bin/argocd completion zsh)
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Declarative continuous deployment for Kubernetes";
|
|
downloadPage = "https://github.com/argoproj/argo-cd";
|
|
homepage = "https://argo-cd.readthedocs.io/en/stable/";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ shahrukh330 superherointj ];
|
|
};
|
|
}
|