mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 21:33:03 +03:00
traefik: link against libc, set build version/codename
this way gethostbyname() works as indented
This commit is contained in:
parent
0cc4cb96bb
commit
ad2004afd3
@ -2,38 +2,42 @@
|
|||||||
|
|
||||||
buildGoPackage rec {
|
buildGoPackage rec {
|
||||||
name = "traefik-${version}";
|
name = "traefik-${version}";
|
||||||
version = "v1.3.8";
|
version = "1.3.8";
|
||||||
|
|
||||||
goPackagePath = "github.com/containous/traefik";
|
goPackagePath = "github.com/containous/traefik";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://github.com/containous/traefik/releases/download/${version}/traefik-${version}.src.tar.gz";
|
url = "https://github.com/containous/traefik/releases/download/v${version}/traefik-v${version}.src.tar.gz";
|
||||||
sha256 = "6fce36dd30bb5ae5f91e69f2950f22fe7a74b920e80c6b441a0721122f6a6174";
|
sha256 = "6fce36dd30bb5ae5f91e69f2950f22fe7a74b920e80c6b441a0721122f6a6174";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ go-bindata ];
|
buildInputs = [ go-bindata bash ];
|
||||||
sourceRoot = ".";
|
unpackPhase = ''
|
||||||
postUnpack = ''
|
runHook preUnpack
|
||||||
files=`ls`
|
|
||||||
mkdir traefik
|
mkdir traefik
|
||||||
mv $files traefik/
|
tar -C traefik -xvzf $src
|
||||||
export sourceRoot="traefik"
|
export sourceRoot="traefik"
|
||||||
|
runHook postUnpack
|
||||||
'';
|
'';
|
||||||
|
|
||||||
buildPhase = ''
|
buildPhase = ''
|
||||||
|
runHook preBuild
|
||||||
|
(
|
||||||
cd go/src/github.com/containous/traefik
|
cd go/src/github.com/containous/traefik
|
||||||
${bash}/bin/bash ./script/make.sh generate
|
bash ./script/make.sh generate
|
||||||
CGO_ENABLED=0 GOGC=off go build -v -ldflags "-s -w" -a -installsuffix nocgo -o dist/traefik ./cmd/traefik
|
|
||||||
'';
|
|
||||||
|
|
||||||
installPhase = ''
|
CODENAME=$(awk -F "=" '/CODENAME=/ { print $2}' script/binary)
|
||||||
mkdir -p $bin/bin
|
go build -ldflags "\
|
||||||
cp ./dist/traefik $bin/bin/
|
-X github.com/containous/traefik/version.Version=${version} \
|
||||||
|
-X github.com/containous/traefik/version.Codename=$CODENAME \
|
||||||
|
" -a -o $bin/bin/traefik ./cmd/traefik
|
||||||
|
)
|
||||||
|
runHook postBuild
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
homepage = https://traefik.io;
|
homepage = https://traefik.io;
|
||||||
description = "Træfik, a modern reverse proxy";
|
description = "A modern reverse proxy";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
maintainers = with maintainers; [ hamhut1066 ];
|
maintainers = with maintainers; [ hamhut1066 ];
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user