mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 08:23:09 +00:00
34 lines
759 B
Nix
34 lines
759 B
Nix
{ buildGoModule, fetchFromGitHub, lib }:
|
|
|
|
buildGoModule rec {
|
|
pname = "gobgpd";
|
|
version = "3.5.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "osrg";
|
|
repo = "gobgp";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-iFtoxEjb+Wk8E2oj1SjSRNwxg20//0LgFtjMq9qJOEQ=";
|
|
};
|
|
|
|
vendorSha256 = "sha256-FxfER3THsA7NRuQKEdWQxgUN0SiNI00hGUMVD+3BaG4=";
|
|
|
|
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 ];
|
|
};
|
|
}
|