buildkit: remove nested with from meta

This commit is contained in:
superherointj 2024-04-30 08:19:41 -03:00 committed by GitHub
parent e2cc2213ca
commit f3d35ed50c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -19,12 +19,12 @@ buildGoModule rec {
doCheck = false;
meta = with lib; {
meta = {
description = "Concurrent, cache-efficient, and Dockerfile-agnostic builder toolkit";
homepage = "https://github.com/moby/buildkit";
changelog = "https://github.com/moby/buildkit/releases/tag/v${version}";
license = licenses.asl20;
maintainers = with maintainers; [ vdemeester developer-guy ];
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ developer-guy vdemeester ];
mainProgram = "buildctl";
};
}