2021-01-25 09:26:54 +01:00
|
|
|
{ lib, buildGoPackage, fetchFromGitHub }:
|
2017-01-17 15:49:32 +01:00
|
|
|
|
2017-05-17 22:56:46 +02:00
|
|
|
buildGoPackage rec {
|
2022-03-07 12:37:20 +01:00
|
|
|
pname = "docker-proxy";
|
|
|
|
version = "unstable-2020-12-15";
|
2017-01-17 15:49:32 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "docker";
|
|
|
|
repo = "libnetwork";
|
2022-03-07 12:37:20 +01:00
|
|
|
rev = "fa125a3512ee0f6187721c88582bf8c4378bd4d7";
|
2021-01-10 16:31:10 +01:00
|
|
|
sha256 = "1r47y0gww3j7fas4kgiqbhrz5fazsx1c6sxnccdfhj8fzik77s9y";
|
2017-01-17 15:49:32 +01:00
|
|
|
};
|
|
|
|
|
2017-05-17 22:56:46 +02:00
|
|
|
goPackagePath = "github.com/docker/libnetwork";
|
2017-01-17 15:49:32 +01:00
|
|
|
|
|
|
|
installPhase = ''
|
2020-04-28 03:50:57 +02:00
|
|
|
install -m755 -D ./go/bin/proxy $out/bin/docker-proxy
|
2017-01-17 15:49:32 +01:00
|
|
|
'';
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2017-01-17 15:49:32 +01:00
|
|
|
description = "Docker proxy binary to forward traffic between host and containers";
|
|
|
|
license = licenses.asl20;
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/docker/libnetwork";
|
2017-01-17 15:49:32 +01:00
|
|
|
maintainers = with maintainers; [vdemeester];
|
2018-09-20 22:22:53 +02:00
|
|
|
platforms = platforms.linux;
|
2017-01-17 15:49:32 +01:00
|
|
|
};
|
|
|
|
}
|