1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

docker-compose_2: add SuperSandro2000 as maintainer, strip more

This commit is contained in:
Sandro Jäckel 2022-01-19 14:43:35 +01:00
parent d26decce48
commit 259955a975
No known key found for this signature in database
GPG key ID: 3AF5A43A3EECC2E5

View file

@ -13,7 +13,7 @@ buildGoModule rec {
vendorSha256 = "sha256-tBm4yPeH02kie77A8KvylfH/wI2OsLyAlUb1zBJgT0g=";
ldflags = ["-X github.com/docker/compose/v2/internal.Version=${version}"];
ldflags = [ "-X github.com/docker/compose/v2/internal.Version=${version}" "-s" "-w" ];
doCheck = false;
installPhase = ''
@ -22,7 +22,8 @@ buildGoModule rec {
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 = [ maintainers.babariviere ];
maintainers = with maintainers; [ babariviere SuperSandro2000 ];
};
}