mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-05 09:58:50 +03:00
argocd: init at 1.4.2 (#79846)
This commit is contained in:
parent
0a33a4ab11
commit
be1635933f
31
pkgs/applications/networking/cluster/argocd/default.nix
Normal file
31
pkgs/applications/networking/cluster/argocd/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
3058
pkgs/applications/networking/cluster/argocd/use-go-module.patch
Normal file
3058
pkgs/applications/networking/cluster/argocd/use-go-module.patch
Normal file
File diff suppressed because it is too large
Load Diff
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user