2021-04-09 16:56:31 +02:00
|
|
|
{ buildGoModule, fetchFromGitHub, lib }:
|
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "gobgpd";
|
2021-08-02 06:49:08 +02:00
|
|
|
version = "2.30.0";
|
2021-04-09 16:56:31 +02:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "osrg";
|
|
|
|
repo = "gobgp";
|
|
|
|
rev = "v${version}";
|
2021-08-02 06:49:08 +02:00
|
|
|
sha256 = "sha256-YerInFAUHFGEU0XSYeqKly9EiCq/uSjtMLnzI/ekSJ4=";
|
2021-04-09 16:56:31 +02:00
|
|
|
};
|
|
|
|
|
2021-05-04 06:39:31 +02:00
|
|
|
vendorSha256 = "sha256-PWm7XnO6LPaU8g8ymmqRkQv2KSX9kLv9RVaa000mrTY=";
|
2021-04-09 16:56:31 +02:00
|
|
|
|
|
|
|
postConfigure = ''
|
|
|
|
export CGO_ENABLED=0
|
|
|
|
'';
|
|
|
|
|
2021-08-26 08:45:51 +02:00
|
|
|
ldflags = [
|
|
|
|
"-s" "-w" "-extldflags '-static'"
|
|
|
|
];
|
2021-04-09 16:56:31 +02:00
|
|
|
|
|
|
|
subPackages = [ "cmd/gobgpd" ];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "BGP implemented in Go";
|
|
|
|
homepage = "https://osrg.github.io/gobgp/";
|
|
|
|
changelog = "https://github.com/osrg/gobgp/releases/tag/v${version}";
|
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ higebu ];
|
|
|
|
};
|
|
|
|
}
|