mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 16:03:23 +00:00
e1d4a40c44
Diff: https://github.com/traefik/traefik/compare/v2.9.6...v2.9.8 Changelog: https://github.com/traefik/traefik/raw/v2.9.8/CHANGELOG.md
40 lines
1.2 KiB
Nix
40 lines
1.2 KiB
Nix
{ lib, fetchzip, buildGoModule, nixosTests }:
|
|
|
|
buildGoModule rec {
|
|
pname = "traefik";
|
|
version = "2.9.8";
|
|
|
|
# Archive with static assets for webui
|
|
src = fetchzip {
|
|
url = "https://github.com/traefik/traefik/releases/download/v${version}/traefik-v${version}.src.tar.gz";
|
|
sha256 = "sha256-3vrMh0zrJQhIG9VAlG/iHlOVlUFlE4qd0EkOB0ckAtY=";
|
|
stripRoot = false;
|
|
};
|
|
|
|
vendorSha256 = "sha256-NyI+3wYRZ3L98qwrkDfrbJK4S+Wdx/UJ8FlLAMhaL7A=";
|
|
|
|
subPackages = [ "cmd/traefik" ];
|
|
|
|
preBuild = ''
|
|
go generate
|
|
|
|
CODENAME=$(awk -F "=" '/CODENAME=/ { print $2}' script/binary)
|
|
|
|
buildFlagsArray+=("-ldflags= -s -w \
|
|
-X github.com/traefik/traefik/v${lib.versions.major version}/pkg/version.Version=${version} \
|
|
-X github.com/traefik/traefik/v${lib.versions.major version}/pkg/version.Codename=$CODENAME")
|
|
'';
|
|
|
|
doCheck = false;
|
|
|
|
passthru.tests = { inherit (nixosTests) traefik; };
|
|
|
|
meta = with lib; {
|
|
homepage = "https://traefik.io";
|
|
description = "A modern reverse proxy";
|
|
changelog = "https://github.com/traefik/traefik/raw/v${version}/CHANGELOG.md";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ vdemeester ];
|
|
};
|
|
}
|