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