Merge pull request #306882 from r-ryantm/auto-update/buildkit

buildkit: 0.13.1 -> 0.13.2
This commit is contained in:
Weijia Wang 2024-05-04 15:55:50 +02:00 committed by GitHub
commit 123837a9b9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2,13 +2,13 @@
buildGoModule rec {
pname = "buildkit";
version = "0.13.1";
version = "0.13.2";
src = fetchFromGitHub {
owner = "moby";
repo = "buildkit";
rev = "v${version}";
hash = "sha256-BrLDY3T40ndkjuWCx5kLZvMBp8xI5d3MFg9M3IpafWM=";
hash = "sha256-Kb5p838jezDTJnc2jcKnima1gE7ENMm+4cmN6F6vh+Y=";
};
vendorHash = null;
@ -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";
};
}