e7ec2969af
GitOrigin-RevId: 9b19f5e77dd906cb52dade0b7bd280339d2a1f3d
39 lines
1 KiB
Nix
39 lines
1 KiB
Nix
{ lib, buildGoModule, fetchFromGitHub }:
|
|
|
|
buildGoModule rec {
|
|
pname = "docker-compose";
|
|
version = "2.24.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "docker";
|
|
repo = "compose";
|
|
rev = "v${version}";
|
|
hash = "sha256-6wa4kIl65z3kk+wzDX+WhS50J+e0AZ+W8A++bdnRc2M=";
|
|
};
|
|
|
|
postPatch = ''
|
|
# entirely separate package that breaks the build
|
|
rm -rf e2e/
|
|
'';
|
|
|
|
vendorHash = "sha256-03jlomVb3jS+SkmIxRtPsaMx2VKLYX/Lp9JH/mlJvK4=";
|
|
|
|
ldflags = [ "-X github.com/docker/compose/v2/internal.Version=${version}" "-s" "-w" ];
|
|
|
|
doCheck = false;
|
|
installPhase = ''
|
|
runHook preInstall
|
|
install -D $GOPATH/bin/cmd $out/libexec/docker/cli-plugins/docker-compose
|
|
|
|
mkdir -p $out/bin
|
|
ln -s $out/libexec/docker/cli-plugins/docker-compose $out/bin/docker-compose
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Docker CLI plugin to define and run multi-container applications with Docker";
|
|
homepage = "https://github.com/docker/compose";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ babariviere ];
|
|
};
|
|
}
|