gobpgd: init at 2.26.0

This commit is contained in:
Yuya Kusakabe 2021-04-09 14:56:31 +00:00
parent d9a1de3d60
commit 9a2af3baf2
No known key found for this signature in database
GPG key ID: 3C36E4E791066C7B
2 changed files with 36 additions and 0 deletions

View file

@ -0,0 +1,34 @@
{ buildGoModule, fetchFromGitHub, lib }:
buildGoModule rec {
pname = "gobgpd";
version = "2.26.0";
src = fetchFromGitHub {
owner = "osrg";
repo = "gobgp";
rev = "v${version}";
sha256 = "10fq74hv3vmcq58i3w67ic370925vl9wl6khcmy3f2vg60i962di";
};
vendorSha256 = "0dmd4r6x76jn8pyvp47x4llzc2wij5m9lchgyaagcb5sfdgbns9x";
postConfigure = ''
export CGO_ENABLED=0
'';
buildFlagsArray = ''
-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 ];
};
}

View file

@ -18221,6 +18221,8 @@ in
gobetween = callPackage ../servers/gobetween { };
gobgpd = callPackage ../servers/misc/gobgpd { };
graph-cli = callPackage ../tools/graphics/graph-cli { };
h2o = callPackage ../servers/http/h2o { };