clusterctl: remove nested with from meta

This commit is contained in:
superherointj 2024-04-29 17:41:52 -03:00 committed by GitHub
parent c35a4655ab
commit d377c82bf4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -39,12 +39,12 @@ buildGoModule rec {
version = "v${version}";
};
meta = with lib; {
meta = {
changelog = "https://github.com/kubernetes-sigs/cluster-api/releases/tag/${src.rev}";
description = "Kubernetes cluster API tool";
mainProgram = "clusterctl";
homepage = "https://cluster-api.sigs.k8s.io/";
license = licenses.asl20;
maintainers = with maintainers; [ qjoly ];
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ qjoly ];
};
}