2017-11-24 19:55:11 -08:00
|
|
|
{ stdenv, buildGoPackage, fetchFromGitHub, bash, go-bindata}:
|
2017-09-11 09:54:27 -07:00
|
|
|
|
2017-09-18 05:37:36 -07:00
|
|
|
buildGoPackage rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "traefik";
|
2019-08-18 12:24:39 -07:00
|
|
|
version = "1.7.14";
|
2017-09-11 09:54:27 -07:00
|
|
|
|
2017-09-18 05:37:36 -07:00
|
|
|
goPackagePath = "github.com/containous/traefik";
|
|
|
|
|
2017-11-24 19:55:11 -08:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "containous";
|
|
|
|
repo = "traefik";
|
|
|
|
rev = "v${version}";
|
2019-08-18 12:24:39 -07:00
|
|
|
sha256 = "1j3p09j8rpdkp8v4d4mz224ddakkvhzchvccm9qryrqc2fq4022v";
|
2017-09-11 09:54:27 -07:00
|
|
|
};
|
|
|
|
|
2020-03-18 02:24:36 -07:00
|
|
|
nativeBuildInputs = [ go-bindata bash ];
|
2017-09-18 05:37:36 -07:00
|
|
|
|
|
|
|
buildPhase = ''
|
2017-09-19 00:12:36 -07:00
|
|
|
runHook preBuild
|
|
|
|
(
|
|
|
|
cd go/src/github.com/containous/traefik
|
|
|
|
bash ./script/make.sh generate
|
2017-09-18 05:37:36 -07:00
|
|
|
|
2017-09-19 00:12:36 -07:00
|
|
|
CODENAME=$(awk -F "=" '/CODENAME=/ { print $2}' script/binary)
|
|
|
|
go build -ldflags "\
|
|
|
|
-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
|
2017-09-11 09:54:27 -07:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://traefik.io";
|
2017-09-19 00:12:36 -07:00
|
|
|
description = "A modern reverse proxy";
|
2017-09-11 09:54:27 -07:00
|
|
|
license = licenses.mit;
|
2018-05-31 12:57:29 -07:00
|
|
|
maintainers = with maintainers; [ hamhut1066 vdemeester ];
|
2017-09-11 09:54:27 -07:00
|
|
|
};
|
|
|
|
}
|