2019-07-27 12:22:23 -07:00
|
|
|
{ stdenv, buildGoModule, fetchFromGitHub }:
|
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "fluxctl";
|
2020-01-16 06:26:57 -08:00
|
|
|
version = "1.17.1";
|
2019-07-27 12:22:23 -07:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "weaveworks";
|
|
|
|
repo = "flux";
|
|
|
|
rev = version;
|
2020-01-16 06:26:57 -08:00
|
|
|
sha256 = "0kp4xk1b8vxajl3cl6any9gmf3412gsahm5fvkyaclnj20yvq807";
|
2019-07-27 12:22:23 -07:00
|
|
|
};
|
|
|
|
|
2020-01-16 06:26:57 -08:00
|
|
|
modSha256 = "0fnlnavw4l3425c9nwjkd98xihrgxi9n5yc9yv15j5xzg47qnqav";
|
2019-07-27 12:22:23 -07:00
|
|
|
|
|
|
|
subPackages = [ "cmd/fluxctl" ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "CLI client for Flux, the GitOps Kubernetes operator";
|
2019-12-03 03:51:28 -08:00
|
|
|
homepage = "https://github.com/fluxcd/flux";
|
2019-07-27 12:22:23 -07:00
|
|
|
license = licenses.asl20;
|
2019-12-03 03:51:46 -08:00
|
|
|
maintainers = with maintainers; [ Gonzih filalex77 ];
|
2019-07-27 12:22:23 -07:00
|
|
|
};
|
|
|
|
}
|