mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-28 08:33:54 +00:00
68 lines
1.6 KiB
Nix
68 lines
1.6 KiB
Nix
{ lib
|
|
, fetchFromGitHub
|
|
, buildGoModule
|
|
, coredns
|
|
, installShellFiles
|
|
, isFull ? false
|
|
, enableGateway ? false
|
|
, pname ? "kuma"
|
|
, components ? lib.optionals isFull [
|
|
"kumactl"
|
|
"kuma-cp"
|
|
"kuma-dp"
|
|
]
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
inherit pname;
|
|
version = "2.3.1";
|
|
tags = lib.optionals enableGateway [ "gateway" ];
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "kumahq";
|
|
repo = "kuma";
|
|
rev = version;
|
|
hash = "sha256-BayfHBTTqgc0ArD6ux9HOqaZy0GrEpqgDa7zHZtiG2I=";
|
|
};
|
|
|
|
vendorHash = "sha256-St+jGks7ojKrgecmN7UJ9FjGrmjtgEKsunSY+4itUyA=";
|
|
|
|
# no test files
|
|
doCheck = false;
|
|
|
|
nativeBuildInputs = [ installShellFiles ] ++ lib.optionals isFull [ coredns ];
|
|
|
|
preBuild = ''
|
|
export HOME=$TMPDIR
|
|
'';
|
|
|
|
subPackages = map (p: "app/" + p) components;
|
|
|
|
postInstall = lib.concatMapStringsSep "\n" (p: ''
|
|
installShellCompletion --cmd ${p} \
|
|
--bash <($out/bin/${p} completion bash) \
|
|
--fish <($out/bin/${p} completion fish) \
|
|
--zsh <($out/bin/${p} completion zsh)
|
|
'') components + lib.optionalString isFull ''
|
|
ln -sLf ${coredns}/bin/coredns $out/bin
|
|
'';
|
|
|
|
ldflags = let
|
|
prefix = "github.com/kumahq/kuma/pkg/version";
|
|
in [
|
|
"-s" "-w"
|
|
"-X ${prefix}.version=${version}"
|
|
"-X ${prefix}.gitTag=${version}"
|
|
"-X ${prefix}.gitCommit=${version}"
|
|
"-X ${prefix}.buildDate=${version}"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Service mesh controller";
|
|
homepage = "https://kuma.io/";
|
|
changelog = "https://github.com/kumahq/kuma/blob/${version}/CHANGELOG.md";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ zbioe ];
|
|
};
|
|
}
|