nixpkgs/pkgs/servers/traefik/default.nix
Vincent Demeester 624b5c14c0 traefik: 1.7.0 -> 1.7.1 (#47660)
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
2018-10-02 15:58:43 +02:00

40 lines
1 KiB
Nix

{ stdenv, buildGoPackage, fetchFromGitHub, bash, go-bindata}:
buildGoPackage rec {
name = "traefik-${version}";
version = "1.7.1";
goPackagePath = "github.com/containous/traefik";
src = fetchFromGitHub {
owner = "containous";
repo = "traefik";
rev = "v${version}";
sha256 = "13vvwb1mrnxn4y1ga37pc5c46qdj5jkrcnyn2w9rb59madgq4c77";
};
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 ];
};
}