nixpkgs/pkgs/servers/traefik/default.nix

37 lines
981 B
Nix
Raw Normal View History

2020-04-06 08:21:35 +02:00
{ stdenv, buildGoModule, fetchFromGitHub, go-bindata, nixosTests }:
2017-09-11 18:54:27 +02:00
2019-12-29 16:01:19 +01:00
buildGoModule rec {
pname = "traefik";
2020-07-12 16:25:54 +02:00
version = "2.2.4";
2017-11-25 04:55:11 +01:00
src = fetchFromGitHub {
owner = "containous";
repo = "traefik";
rev = "v${version}";
2020-07-12 16:25:54 +02:00
sha256 = "1zxifwbrhxaj2pl6kwyk1ivr4in0wd0q01x9ynxzbf6w2yx4xkw2";
2017-09-11 18:54:27 +02:00
};
2020-07-12 16:25:54 +02:00
vendorSha256 = "0kz7y64k07vlybzfjg6709fdy7krqlv1gkk01nvhs84sk8bnrcvn";
2019-12-29 16:01:19 +01:00
subPackages = [ "cmd/traefik" ];
nativeBuildInputs = [ go-bindata ];
2020-04-06 08:21:35 +02:00
passthru.tests = { inherit (nixosTests) traefik; };
2019-12-29 16:01:19 +01:00
preBuild = ''
go generate
CODENAME=$(awk -F "=" '/CODENAME=/ { print $2}' script/binary)
makeFlagsArray+=("-ldflags=\
-X github.com/containous/traefik/version.Version=${version} \
-X github.com/containous/traefik/version.Codename=$CODENAME")
2017-09-11 18:54:27 +02:00
'';
meta = with stdenv.lib; {
homepage = "https://traefik.io";
description = "A modern reverse proxy";
2017-09-11 18:54:27 +02:00
license = licenses.mit;
2019-12-29 16:01:19 +01:00
maintainers = with maintainers; [ vdemeester ];
2017-09-11 18:54:27 +02:00
};
}