1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/pkgs/applications/networking/cluster/fluxctl/default.nix

25 lines
614 B
Nix
Raw Normal View History

2019-07-27 20:22:23 +01:00
{ stdenv, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "fluxctl";
2019-11-09 01:04:48 +00:00
version = "1.15.0";
2019-07-27 20:22:23 +01:00
src = fetchFromGitHub {
owner = "weaveworks";
repo = "flux";
rev = version;
2019-11-09 01:04:48 +00:00
sha256 = "1aqcamhiivy733l2avc18b0k72sg0d8iqbsqvnj1344kqx6jgxf6";
2019-07-27 20:22:23 +01:00
};
2019-11-09 01:04:48 +00:00
modSha256 = "1dz1cb2513drb2lr5gbl7w05ksrq5rvkqdcjnlkdc00mypjb2ms5";
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-11-09 01:04:48 +00:00
homepage = https://github.com/fluxcd/flux;
2019-07-27 20:22:23 +01:00
license = licenses.asl20;
maintainers = with maintainers; [ Gonzih ];
};
}