2020-03-27 07:33:21 +00:00
|
|
|
{ lib, fetchFromGitHub, buildGoModule }:
|
2019-11-16 21:52:07 +00:00
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "gortr";
|
2020-07-08 08:30:02 +00:00
|
|
|
version = "0.14.5";
|
2019-11-16 21:52:07 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "cloudflare";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2020-07-08 08:30:02 +00:00
|
|
|
sha256 = "08nbvw5pqd8wdd8vrsr4d50zfqwg175brh7m0pvv4165gnv8k5bf";
|
2019-11-16 21:52:07 +00:00
|
|
|
};
|
2020-05-01 01:59:00 +00:00
|
|
|
vendorSha256 = "1nwrzbpqycr4ixk8a90pgaxcwakv5nlfnql6hmcc518qrva198wp";
|
2019-11-16 21:52:07 +00:00
|
|
|
|
2020-03-27 07:33:21 +00:00
|
|
|
meta = with lib; {
|
2019-11-16 21:52:07 +00:00
|
|
|
description = "The RPKI-to-Router server used at Cloudflare";
|
|
|
|
homepage = "https://github.com/cloudflare/gortr/";
|
|
|
|
license = licenses.gpl3;
|
|
|
|
maintainers = with maintainers; [ petabyteboy ];
|
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
2020-05-01 01:59:00 +00:00
|
|
|
}
|