nixpkgs/pkgs/applications/networking/cluster/argo/default.nix

26 lines
631 B
Nix
Raw Normal View History

2019-01-26 01:43:58 +01:00
{ lib, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
pname = "argo";
2019-10-13 02:12:59 +02:00
version = "2.4.1";
2019-01-26 01:43:58 +01:00
src = fetchFromGitHub {
owner = "argoproj";
repo = "argo";
rev = "v${version}";
2019-10-13 02:12:59 +02:00
sha256 = "1f9l9d4r0qfhpr2fn17faczcwmwmdz8f56f27cmmnhxz4r7qcm48";
2019-01-26 01:43:58 +01:00
};
goDeps = ./deps.nix;
goPackagePath = "github.com/argoproj/argo";
2019-10-13 02:12:59 +02:00
subPackages = [ "cmd/argo" ];
2019-01-26 01:43:58 +01:00
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;
};
}