about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/networking/cluster/argo/default.nix
blob: 647261a138f28e11e101c8d9b11ecda8beb054c8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ lib, buildGoPackage, fetchFromGitHub }:

buildGoPackage rec {
  name = "argo-${version}";
  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;
  };
}