argocd: init at 1.4.2 (#79846)

This commit is contained in:
Shahrukh Khan 2020-02-14 01:12:29 +05:00 committed by GitHub
parent 0a33a4ab11
commit be1635933f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3091 additions and 0 deletions

View File

@ -0,0 +1,31 @@
{ lib, buildGoModule, fetchFromGitHub, packr }:
buildGoModule rec {
pname = "argocd";
version = "1.4.2";
src = fetchFromGitHub {
owner = "argoproj";
repo = "argo-cd";
rev = "v${version}";
sha256 = "01vsyrks1k5yfvrarv8ia0isr7snilr21b7lfiy860si82r2r8hj";
};
modSha256 = "1qivg7yy7ymmgkrvl365x29d8jnsphbz18j1ykgwwysyw3n4jkdg";
nativeBuildInputs = [ packr ];
patches = [ ./use-go-module.patch ];
# run packr to embed assets
preBuild = ''
packr
'';
meta = with lib; {
description = "Argo CD is a declarative, GitOps continuous delivery tool for Kubernetes";
homepage = "https://github.com/argoproj/argo";
license = licenses.asl20;
maintainers = with maintainers; [ shahrukh330 ];
};
}

File diff suppressed because it is too large Load Diff

View File

@ -18163,6 +18163,8 @@ in
argo = callPackage ../applications/networking/cluster/argo { };
argocd = callPackage ../applications/networking/cluster/argocd { };
ario = callPackage ../applications/audio/ario { };
arion = callPackage ../applications/virtualization/arion { };