docker-compose: 2.11.2 -> 2.12.0

This commit is contained in:
Sandro Jäckel 2022-10-18 23:25:51 +02:00
parent 66fb0ca69f
commit edb08aac6b
No known key found for this signature in database
GPG key ID: 3AF5A43A3EECC2E5

View file

@ -2,16 +2,21 @@
buildGoModule rec {
pname = "docker-compose";
version = "2.11.2";
version = "2.12.0";
src = fetchFromGitHub {
owner = "docker";
repo = "compose";
rev = "v${version}";
sha256 = "sha256-L43BIkRaPAU0zgdVsf1a3OinbspiU0LfWZPssS91wTE=";
sha256 = "sha256-AwoWCaACq2s9rzvvpAx3GZd3oSZZPykLwYLUiUhEYfg=";
};
vendorSha256 = "sha256-PZumm//BV9iAkq1Kb9xNenqVrx73ZZUHTCUSVNqqEXA=";
postPatch = ''
# entirely separate package that breaks the build
rm -rf e2e/
'';
vendorSha256 = "sha256-C7VgcbDB18dF+u422AFAfoICxGmqjREbOpUXrFlgmiM=";
ldflags = [ "-X github.com/docker/compose/v2/internal.Version=${version}" "-s" "-w" ];