2022-12-03T11:49:08 docker-compose 2.13.0 -> 2.14.0 https://repology.org/metapackage/docker-compose/versions 2022-12-03T11:49:11 attrpath: docker-compose 2022-12-03T11:49:11 Checking auto update branch... 2022-12-03T11:49:11 No auto update branch exists 2022-12-03T11:49:12 Old version 2.13.0" not present in master derivation file with contents: { lib, buildGoModule, fetchFromGitHub }: buildGoModule rec { pname = "docker-compose"; version = "2.14.0"; src = fetchFromGitHub { owner = "docker"; repo = "compose"; rev = "v${version}"; sha256 = "sha256-6dTVDAFq5CwLvTzOczyaM+ZILKjKZzR2SAaRq2hqk7M="; }; postPatch = '' # entirely separate package that breaks the build rm -rf e2e/ ''; vendorSha256 = "sha256-B6xqMsspWexTdYX+o2BJNlXuJFL7/rv8oexFUxOO8BI="; 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 SuperSandro2000 ]; }; }