docker-compose 2.24.5 -> 2.24.6 https://repology.org/project/docker-compose/versions attrpath: docker-compose Checking auto update branch... No auto update branch exists Old version 2.24.5" not present in master derivation file with contents: { lib, buildGoModule, fetchFromGitHub }: buildGoModule rec { pname = "docker-compose"; version = "2.24.6"; src = fetchFromGitHub { owner = "docker"; repo = "compose"; rev = "v${version}"; hash = "sha256-CrQM9fTXGI3uGAk2yk/+enBr9LuMhNFLFBYHT78lNWc="; }; postPatch = '' # entirely separate package that breaks the build rm -rf e2e/ ''; vendorHash = "sha256-0YZ36fouuVjj12a7d9F8OkJAmtLIHo0bZhcmOYO5Ki4="; 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 ]; }; }