nixpkgs-suyu/pkgs/servers/gortr/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
579 B
Nix
Raw Normal View History

{ lib, fetchFromGitHub, buildGoModule }:
2019-11-16 22:52:07 +01:00
buildGoModule rec {
pname = "gortr";
2020-11-26 07:16:59 +01:00
version = "0.14.7";
2019-11-16 22:52:07 +01:00
src = fetchFromGitHub {
owner = "cloudflare";
repo = pname;
rev = "v${version}";
2020-11-26 07:16:59 +01:00
sha256 = "10dq42d3hb6a3ln3x1rag1lqzhwqb66xn4q8k4igjkn5my81nr6q";
2019-11-16 22:52:07 +01:00
};
2022-04-26 00:37:59 +02:00
vendorSha256 = "1nwrzbpqycr4ixk8a90pgaxcwakv5nlfnql6hmcc518qrva198wp";
meta = with lib; {
2019-11-16 22:52:07 +01:00
description = "The RPKI-to-Router server used at Cloudflare";
homepage = "https://github.com/cloudflare/gortr/";
license = licenses.gpl3;
maintainers = with maintainers; [ petabyteboy ];
};
}