Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
49 lines
1.1 KiB
Nix
49 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "docker-compose";
|
|
version = "2.39.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "docker";
|
|
repo = "compose";
|
|
rev = "v${version}";
|
|
hash = "sha256-NDNyXK4E7TkviESHLp8M+OI56ME0Hatoi9eWjX+G1zo=";
|
|
};
|
|
|
|
postPatch = ''
|
|
# entirely separate package that breaks the build
|
|
rm -rf pkg/e2e/
|
|
'';
|
|
|
|
vendorHash = "sha256-Uqzul9BiXHAJ1BxlOtRS68Tg71SDva6kg3tv7c6ar2E=";
|
|
|
|
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";
|
|
mainProgram = "docker-compose";
|
|
homepage = "https://github.com/docker/compose";
|
|
license = licenses.asl20;
|
|
maintainers = [ ];
|
|
};
|
|
}
|