mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
40 lines
1 KiB
Nix
40 lines
1 KiB
Nix
{ stdenv, buildGoPackage, fetchFromGitHub, bash, go-bindata}:
|
|
|
|
buildGoPackage rec {
|
|
name = "traefik-${version}";
|
|
version = "1.6.5";
|
|
|
|
goPackagePath = "github.com/containous/traefik";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "containous";
|
|
repo = "traefik";
|
|
rev = "v${version}";
|
|
sha256 = "0swiyyw7j7264avfk0a5jqs7h1hv4bq1k1kr92v4830azc9fxrvn";
|
|
};
|
|
|
|
buildInputs = [ go-bindata bash ];
|
|
|
|
buildPhase = ''
|
|
runHook preBuild
|
|
(
|
|
cd go/src/github.com/containous/traefik
|
|
bash ./script/make.sh generate
|
|
|
|
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
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://traefik.io;
|
|
description = "A modern reverse proxy";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ hamhut1066 vdemeester ];
|
|
};
|
|
}
|