40 lines
782 B
Nix
40 lines
782 B
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "gobgpd";
|
|
version = "3.11.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "osrg";
|
|
repo = "gobgp";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-UGRGJqeVWrt8NVf9d5Mk7k+k2Is/fwHv2X0hmyXvTZs=";
|
|
};
|
|
|
|
vendorHash = "sha256-9Vi8qrcFC2SazcGVgAf1vbKvxd8rTMgye63wSCaFonk=";
|
|
|
|
postConfigure = ''
|
|
export CGO_ENABLED=0
|
|
'';
|
|
|
|
ldflags = [
|
|
"-s"
|
|
"-w"
|
|
"-extldflags '-static'"
|
|
];
|
|
|
|
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 ];
|
|
};
|
|
}
|