33 lines
683 B
Nix
33 lines
683 B
Nix
{ buildGoModule, fetchFromGitHub, lib }:
|
|
|
|
buildGoModule rec {
|
|
pname = "gobgp";
|
|
version = "2.31.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "osrg";
|
|
repo = "gobgp";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-Q55BA5iMZP5D8lLfJn82fsxQ0SP5e4OdXtGly4j3dXU=";
|
|
};
|
|
|
|
vendorSha256 = "sha256-+dX/XByFW5/zvfXvyWePAv9X71dJEKaQf6xNXAXoMxw=";
|
|
|
|
postConfigure = ''
|
|
export CGO_ENABLED=0
|
|
'';
|
|
|
|
ldflags = [
|
|
"-s" "-w" "-extldflags '-static'"
|
|
];
|
|
|
|
subPackages = [ "cmd/gobgp" ];
|
|
|
|
meta = with lib; {
|
|
description = "A CLI tool for GoBGP";
|
|
homepage = "https://osrg.github.io/gobgp/";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ higebu ];
|
|
};
|
|
}
|