1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/servers/traefik/default.nix

42 lines
1.2 KiB
Nix
Raw Normal View History

2022-06-29 13:02:25 +01:00
{ lib, fetchzip, buildGoModule, nixosTests }:
2017-09-11 17:54:27 +01:00
2019-12-29 15:01:19 +00:00
buildGoModule rec {
pname = "traefik";
2024-07-16 05:23:37 +01:00
version = "3.1.0";
2022-06-29 13:02:25 +01:00
# Archive with static assets for webui
src = fetchzip {
url = "https://github.com/traefik/traefik/releases/download/v${version}/traefik-v${version}.src.tar.gz";
2024-07-16 05:23:37 +01:00
hash = "sha256-DSGWpTshVj8GkDQBK+XasgcNhdvIzwhjefVCQfbxAf0=";
2022-06-29 13:02:25 +01:00
stripRoot = false;
2017-09-11 17:54:27 +01:00
};
2024-07-16 05:23:37 +01:00
vendorHash = "sha256-L2vjfrtx2lJjfJZlH5c1l4Aefa+iryAYay3aC5/pHas=";
2019-12-29 15:01:19 +00:00
subPackages = [ "cmd/traefik" ];
preBuild = ''
2022-09-24 07:56:16 +01:00
GOOS= GOARCH= CGO_ENABLED=0 go generate
2019-12-29 15:01:19 +00:00
2024-04-29 17:37:40 +01:00
CODENAME=$(grep -Po "CODENAME \?=\s\K.+$" Makefile)
2019-12-29 15:01:19 +00:00
ldflags="-s"
ldflags+=" -w"
ldflags+=" -X github.com/traefik/traefik/v${lib.versions.major version}/pkg/version.Version=${version}"
ldflags+=" -X github.com/traefik/traefik/v${lib.versions.major version}/pkg/version.Codename=$CODENAME"
2017-09-11 17:54:27 +01:00
'';
2022-06-03 10:03:45 +01:00
doCheck = false;
passthru.tests = { inherit (nixosTests) traefik; };
meta = with lib; {
homepage = "https://traefik.io";
description = "Modern reverse proxy";
changelog = "https://github.com/traefik/traefik/raw/v${version}/CHANGELOG.md";
2017-09-11 17:54:27 +01:00
license = licenses.mit;
2019-12-29 15:01:19 +00:00
maintainers = with maintainers; [ vdemeester ];
2023-11-23 21:09:35 +00:00
mainProgram = "traefik";
2017-09-11 17:54:27 +01:00
};
}