summary refs log blame commit diff
path: root/pkgs/applications/networking/cluster/argo/default.nix
blob: 92db34417f47fc55840239e56d5f7cb4c3568238 (plain) (tree)
1
2
3
4


                                         
                 



















                                                                    
{ lib, buildGoPackage, fetchFromGitHub }:

buildGoPackage rec {
  pname = "argo";
  version = "2.2.1";

  src = fetchFromGitHub {
    owner = "argoproj";
    repo = "argo";
    rev = "v${version}";
    sha256 = "0x3aizwbqkg2712021wcq4chmwjhw2df702wbr6zd2a2cdypwb67";
  };

  goDeps = ./deps.nix;
  goPackagePath = "github.com/argoproj/argo";

  meta = with lib; {
    description = "Container native workflow engine for Kubernetes";
    homepage = https://github.com/argoproj/argo;
    license = licenses.asl20;
    maintainers = with maintainers; [ groodt ];
    platforms = platforms.unix;
  };
}