2021-01-25 09:26:54 +01:00
|
|
|
{ lib, buildGoModule, fetchFromGitHub }:
|
2020-12-21 02:08:59 +01:00
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "docker-buildx";
|
2024-01-12 21:54:56 +01:00
|
|
|
version = "0.12.1";
|
2020-12-21 02:08:59 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "docker";
|
|
|
|
repo = "buildx";
|
|
|
|
rev = "v${version}";
|
2024-01-12 21:54:56 +01:00
|
|
|
hash = "sha256-QC2mlJWjOtqYAB+YrL+s2FsJ79LuLFZGOgSVGL6WmX8=";
|
2020-12-21 02:08:59 +01:00
|
|
|
};
|
|
|
|
|
2023-03-14 08:53:18 +01:00
|
|
|
doCheck = false;
|
|
|
|
|
2023-07-09 03:21:33 +02:00
|
|
|
vendorHash = null;
|
2020-12-21 02:08:59 +01:00
|
|
|
|
2022-06-13 20:45:55 +02:00
|
|
|
ldflags = [
|
|
|
|
"-w" "-s"
|
|
|
|
"-X github.com/docker/buildx/version.Package=github.com/docker/buildx"
|
|
|
|
"-X github.com/docker/buildx/version.Version=v${version}"
|
|
|
|
];
|
|
|
|
|
2020-12-21 02:08:59 +01:00
|
|
|
installPhase = ''
|
2022-08-30 09:07:45 +02:00
|
|
|
runHook preInstall
|
2020-12-21 02:08:59 +01:00
|
|
|
install -D $GOPATH/bin/buildx $out/libexec/docker/cli-plugins/docker-buildx
|
2022-08-30 09:07:45 +02:00
|
|
|
|
|
|
|
mkdir -p $out/bin
|
|
|
|
ln -s $out/libexec/docker/cli-plugins/docker-buildx $out/bin/docker-buildx
|
|
|
|
runHook postInstall
|
2020-12-21 02:08:59 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Docker CLI plugin for extended build capabilities with BuildKit";
|
2022-08-30 09:07:45 +02:00
|
|
|
homepage = "https://github.com/docker/buildx";
|
2020-12-21 02:08:59 +01:00
|
|
|
license = licenses.asl20;
|
2023-03-14 08:52:04 +01:00
|
|
|
maintainers = with maintainers; [ ivan-babrou developer-guy ];
|
2020-12-21 02:08:59 +01:00
|
|
|
};
|
|
|
|
}
|