docker-proxy: remove go references

related to #25861
This commit is contained in:
Jörg Thalheim 2017-05-17 21:56:46 +01:00
parent bec5ffee15
commit 618f9aa52c
No known key found for this signature in database
GPG Key ID: CA4106B8D7CC79FA
1 changed files with 7 additions and 13 deletions

View File

@ -1,8 +1,6 @@
{ stdenv, lib, fetchFromGitHub, go, docker }: { stdenv, buildGoPackage, fetchFromGitHub, docker }:
with lib; buildGoPackage rec {
stdenv.mkDerivation rec {
name = "docker-proxy-${rev}"; name = "docker-proxy-${rev}";
rev = "7b2b1feb1de4817d522cc372af149ff48d25028e"; rev = "7b2b1feb1de4817d522cc372af149ff48d25028e";
@ -13,20 +11,15 @@ stdenv.mkDerivation rec {
sha256 = "1ng577k11cyv207bp0vaz5jjfcn2igd6w95zn4izcq1nldzp5935"; sha256 = "1ng577k11cyv207bp0vaz5jjfcn2igd6w95zn4izcq1nldzp5935";
}; };
buildInputs = [ go ]; goPackagePath = "github.com/docker/libnetwork";
buildPhase = '' goDeps = null;
mkdir -p .gopath/src/github.com/docker
ln -sf $(pwd) .gopath/src/github.com/docker/libnetwork
GOPATH="$(pwd)/.gopath:$(pwd)/Godeps/_workspace" go build -ldflags="$PROXY_LDFLAGS" -o docker-proxy ./cmd/proxy
'';
installPhase = '' installPhase = ''
mkdir -p $out/bin install -m755 -D ./go/bin/proxy $bin/bin/docker-proxy
cp docker-proxy $out/bin
''; '';
meta = { meta = with stdenv.lib; {
description = "Docker proxy binary to forward traffic between host and containers"; description = "Docker proxy binary to forward traffic between host and containers";
license = licenses.asl20; license = licenses.asl20;
homepage = https://github.com/docker/libnetwork; homepage = https://github.com/docker/libnetwork;
@ -34,3 +27,4 @@ stdenv.mkDerivation rec {
platforms = docker.meta.platforms; platforms = docker.meta.platforms;
}; };
} }