nerdctl: remove nested with in meta

This commit is contained in:
superherointj
2024-04-30 13:22:27 -03:00
committed by GitHub
parent 9ee62abae9
commit 9f5332c849
@@ -48,13 +48,13 @@ buildGoModule rec {
runHook postInstallCheck
'';
meta = with lib; {
meta = {
homepage = "https://github.com/containerd/nerdctl/";
changelog = "https://github.com/containerd/nerdctl/releases/tag/v${version}";
description = "A Docker-compatible CLI for containerd";
mainProgram = "nerdctl";
license = licenses.asl20;
maintainers = with maintainers; [ jk developer-guy ];
platforms = platforms.linux;
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ developer-guy jk ];
platforms = lib.platforms.linux;
};
}