ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
41 lines
810 B
Nix
41 lines
810 B
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "gobgpd";
|
|
version = "3.24.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "osrg";
|
|
repo = "gobgp";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-JGgkhNSKprqaUBaW+m/5vYnuDri1Ibyf2Y6SMlscnIU=";
|
|
};
|
|
|
|
vendorHash = "sha256-5eB3vFOo3LCsjMnWYFH0yq5+IunwKXp5C34x6NvpFZ8=";
|
|
|
|
postConfigure = ''
|
|
export CGO_ENABLED=0
|
|
'';
|
|
|
|
ldflags = [
|
|
"-s"
|
|
"-w"
|
|
"-extldflags '-static'"
|
|
];
|
|
|
|
subPackages = [
|
|
"cmd/gobgpd"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "BGP implemented in Go";
|
|
mainProgram = "gobgpd";
|
|
homepage = "https://osrg.github.io/gobgp/";
|
|
changelog = "https://github.com/osrg/gobgp/releases/tag/v${version}";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ higebu ];
|
|
};
|
|
}
|