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
626 B
Nix
Raw Normal View History

2019-07-27 20:22:23 +01:00
{ stdenv, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "fluxctl";
2020-03-14 05:31:12 +00:00
version = "1.18.0";
2019-07-27 20:22:23 +01:00
src = fetchFromGitHub {
owner = "weaveworks";
repo = "flux";
rev = version;
2020-03-14 05:31:12 +00:00
sha256 = "1sk82cnrj5ngcaml54rhh7ak8dg80r25623c4s8p7ybrj1m7krqj";
2019-07-27 20:22:23 +01:00
};
2020-03-14 05:31:12 +00:00
modSha256 = "0ij5q31a0818nmqsdql1ii6rhq6nb0liplnw509qih8py7dk5xkg";
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
};
}