nixpkgs/pkgs/servers/traefik/default.nix

45 lines
1.1 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, buildGoModule, go-bindata, nixosTests }:
2017-09-11 18:54:27 +02:00
2019-12-29 16:01:19 +01:00
buildGoModule rec {
pname = "traefik";
2020-09-09 17:36:30 +02:00
version = "2.2.11";
src = fetchurl {
url = "https://github.com/containous/traefik/releases/download/v${version}/traefik-v${version}.src.tar.gz";
sha256 = "00kprbr437ml33bxm4nhxm9vwh6ywrpxvlij7p3r306bfpwa4j3r";
2017-09-11 18:54:27 +02:00
};
unpackPhase = ''
mkdir source
cd source
tar xf $src
'';
2020-09-09 17:36:30 +02:00
vendorSha256 = "06x2mcyp6c1jdf5wz51prhcn071d0580322lcv3x2bxk2grx08i2";
doCheck = false;
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)
2020-09-09 19:05:05 +02:00
buildFlagsArray+=("-ldflags=\
-X github.com/containous/traefik/v2/pkg/version.Version=${version} \
-X github.com/containous/traefik/v2/pkg/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
};
}