biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / networking / pathvector / default.nix
blobe9ca6f90e5a55a7d0af25563de31c0fddadb4c75
1 { lib, buildGoModule, fetchFromGitHub }:
3 buildGoModule rec {
4   pname = "pathvector";
5   version = "6.3.2";
7   src = fetchFromGitHub {
8     owner = "natesales";
9     repo = "pathvector";
10     rev = "v${version}";
11     sha256 = "sha256-TqGasguEAcA5ET2E/uFjgIl7IHI2v9m5EaXpIMG3T8c=";
12   };
14   vendorHash = "sha256-hgUuntT6jMWI14qDE3Yjm5W8UqQ6CcvoILmSDaVEZac=";
16   CGO_ENABLED = 0;
18   ldflags = [ "-s" "-w" "-X main.version=${version}" "-X main.commit=${src.rev}" "-X main.date=unknown" ];
20   doCheck = false;
22   meta = with lib; {
23     description = "Declarative edge routing platform that automates route optimization and control plane configuration";
24     homepage = "https://pathvector.io";
25     license = licenses.gpl3;
26     maintainers = with maintainers; [ matthewpi ];
27     mainProgram = "pathvector";
28   };