Merge pull request #221023 from developer-guy/feature/add-developer-guy-docker-buildx

This commit is contained in:
Sandro 2023-03-21 22:33:13 +01:00 committed by GitHub
commit d352699fa1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,15 +2,17 @@
buildGoModule rec { buildGoModule rec {
pname = "docker-buildx"; pname = "docker-buildx";
version = "0.9.1"; version = "0.10.4";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "docker"; owner = "docker";
repo = "buildx"; repo = "buildx";
rev = "v${version}"; rev = "v${version}";
sha256 = "sha256-nJR+wpWa7y8Mq6WWj1ZH/FRCtar40XP2fwyl1hMgELI="; sha256 = "sha256-hYEFboZa6RGiy0wr7NEWaf5KCz/O7KGXTc6c9hMmoXk=";
}; };
doCheck = false;
vendorSha256 = null; vendorSha256 = null;
ldflags = [ ldflags = [
@ -32,6 +34,6 @@ buildGoModule rec {
description = "Docker CLI plugin for extended build capabilities with BuildKit"; description = "Docker CLI plugin for extended build capabilities with BuildKit";
homepage = "https://github.com/docker/buildx"; homepage = "https://github.com/docker/buildx";
license = licenses.asl20; license = licenses.asl20;
maintainers = [ maintainers.ivan-babrou ]; maintainers = with maintainers; [ ivan-babrou developer-guy ];
}; };
} }