k8sgpt: removed nested with from meta

This commit is contained in:
superherointj 2024-04-30 08:17:17 -03:00 committed by GitHub
parent da236768f7
commit 783bf65602
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -22,12 +22,12 @@ buildGoModule rec {
"-X main.date=1970-01-01-00:00:01"
];
meta = with lib; {
meta = {
description = "Giving Kubernetes Superpowers to everyone";
mainProgram = "k8sgpt";
homepage = "https://k8sgpt.ai";
changelog = "https://github.com/k8sgpt-ai/k8sgpt/releases/tag/v${version}";
license = licenses.asl20;
maintainers = with maintainers; [ developer-guy kranurag7 ];
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ developer-guy kranurag7 ];
};
}