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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

71 lines
1.8 KiB
Nix
Raw Normal View History

2021-03-18 22:45:03 +00:00
{ lib, buildGoModule, fetchFromGitHub, fetchzip, installShellFiles }:
let
2022-03-24 11:52:59 +00:00
version = "0.28.3";
sha256 = "1agzj8fgv6jp1i15asjvhnsxw4fj7i6g00ajjl4ihd9p166r83qy";
manifestsSha256 = "036d1y5dkb9mir9iy76zwdydlqxpbhz7j25fy1faznmicm2qxiqi";
2021-03-18 22:45:03 +00:00
manifests = fetchzip {
2021-12-07 12:55:20 +00:00
url =
"https://github.com/fluxcd/flux2/releases/download/v${version}/manifests.tar.gz";
sha256 = manifestsSha256;
2021-03-18 22:45:03 +00:00
stripRoot = false;
};
2021-12-07 12:55:20 +00:00
in buildGoModule rec {
pname = "fluxcd";
inherit version;
src = fetchFromGitHub {
owner = "fluxcd";
repo = "flux2";
rev = "v${version}";
inherit sha256;
};
2022-03-24 11:52:59 +00:00
vendorSha256 = "sha256-8TIeVcPW55vJn49y2xLfOOrefmqNAhDMmTWS/c8HuA8=";
2021-10-23 12:37:32 +00:00
postUnpack = ''
cp -r ${manifests} source/cmd/flux/manifests
'';
2021-12-07 12:55:20 +00:00
patches = [ ./patches/disable-tests-ssh_key.patch ];
2021-08-26 06:45:51 +00:00
ldflags = [ "-s" "-w" "-X main.VERSION=${version}" ];
2021-10-23 12:37:32 +00:00
subPackages = [ "cmd/flux" ];
2021-03-18 22:45:03 +00:00
2021-08-27 12:28:40 +00:00
# Required to workaround test error:
# panic: mkdir /homeless-shelter: permission denied
2021-12-07 12:55:20 +00:00
HOME = "$TMPDIR";
2021-08-27 12:28:40 +00:00
2021-10-23 12:37:32 +00:00
nativeBuildInputs = [ installShellFiles ];
2021-01-27 15:09:39 +00:00
doInstallCheck = true;
installCheckPhase = ''
$out/bin/flux --version | grep ${version} > /dev/null
'';
postInstall = ''
for shell in bash fish zsh; do
$out/bin/flux completion $shell > flux.$shell
installShellCompletion flux.$shell
done
'';
passthru.updateScript = ./update.sh;
meta = with lib; {
2021-12-07 12:55:20 +00:00
description =
"Open and extensible continuous delivery solution for Kubernetes";
longDescription = ''
Flux is a tool for keeping Kubernetes clusters in sync
with sources of configuration (like Git repositories), and automating
updates to configuration when there is new code to deploy.
'';
homepage = "https://fluxcd.io";
license = licenses.asl20;
maintainers = with maintainers; [ jlesquembre bryanasdev000 ];
};
}