Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 9 additions & 7 deletions pkgs/applications/networking/cluster/kuma/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -9,27 +9,28 @@
, components ? lib.optionals isFull [
"kumactl"
"kuma-cp"
"kuma-prometheus-sd"
"kuma-dp"
]
}:

buildGoModule rec {
inherit pname ;
version = "1.8.1";
tags = lib.optionals enableGateway ["gateway"];
vendorSha256 = "sha256-69uXHvpQMeFwQbejMpfQPS8DDXJyVsnn59WUEJpSeng=";
inherit pname;
version = "2.3.1";
tags = lib.optionals enableGateway [ "gateway" ];

src = fetchFromGitHub {
owner = "kumahq";
repo = "kuma";
rev = version;
sha256 = "sha256-hNfgiMX3aMb8yjXjFKz73MczOeJyOI3Tna/NRSJBSzs=";
hash = "sha256-BayfHBTTqgc0ArD6ux9HOqaZy0GrEpqgDa7zHZtiG2I=";
};

vendorHash = "sha256-St+jGks7ojKrgecmN7UJ9FjGrmjtgEKsunSY+4itUyA=";

# no test files
doCheck = false;

nativeBuildInputs = [installShellFiles] ++ lib.optionals isFull [coredns];
nativeBuildInputs = [ installShellFiles ] ++ lib.optionals isFull [ coredns ];

preBuild = ''
export HOME=$TMPDIR
Expand Down Expand Up @@ -59,6 +60,7 @@ buildGoModule rec {
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 ];
};
Expand Down
1 change: 1 addition & 0 deletions pkgs/top-level/aliases.nix
Original file line number Diff line number Diff line change
Expand Up @@ -844,6 +844,7 @@ mapAliases ({
kubei = kubeclarity; # Added 2023-05-20
kubeless = throw "kubeless is deprecated and archived by upstream"; # Added 2022-04-05
kubicorn = throw "kubicorn has been dropped due to the lack of maintenance from upstream since 2019"; # Added 2022-05-30
kuma-prometheus-sd = throw "kuma-prometheus-sd has been deprecated upstream"; # Added 2023-07-02
kvm = throw "'kvm' has been renamed to/replaced by 'qemu_kvm'"; # Converted to throw 2022-02-22

### L ###
Expand Down
4 changes: 0 additions & 4 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -32876,10 +32876,6 @@ with pkgs;
components = ["kuma-dp"];
pname = "kuma-dp";
};
kuma-prometheus-sd = callPackage ../applications/networking/cluster/kuma {
components = ["kuma-prometheus-sd"];
pname = "kuma-prometheus-sd";
};

kile-wl = callPackage ../applications/misc/kile-wl { };

Expand Down