30 lines
845 B
Nix
30 lines
845 B
Nix
{ lib, buildGoModule, fetchFromGitHub }:
|
|
|
|
buildGoModule rec {
|
|
pname = "docker-compose";
|
|
version = "2.3.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "docker";
|
|
repo = "compose";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-PFR7EcRkqn/d6gYlMNN36nRIslYEN0JFSbFU9niGc+Y=";
|
|
};
|
|
|
|
vendorSha256 = "sha256-L6PNKK1ID7ZVX/4sG72wn9ZjWlx0lsNuiBc/EtCN03E=";
|
|
|
|
ldflags = [ "-X github.com/docker/compose/v2/internal.Version=${version}" "-s" "-w" ];
|
|
|
|
doCheck = false;
|
|
installPhase = ''
|
|
install -D $GOPATH/bin/cmd $out/libexec/docker/cli-plugins/docker-compose
|
|
'';
|
|
|
|
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 ];
|
|
};
|
|
}
|