nixpkgs/pkgs/servers/gortr/default.nix

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

32 lines
587 B
Nix
Raw Normal View History

2023-04-30 01:51:31 +00:00
{ lib
, buildGoModule
, fetchFromGitHub
}:
2019-11-16 21:52:07 +00:00
buildGoModule rec {
pname = "gortr";
2024-02-29 20:41:15 +00:00
version = "0.15.0";
2019-11-16 21:52:07 +00:00
src = fetchFromGitHub {
owner = "cloudflare";
repo = pname;
rev = "v${version}";
2024-02-29 20:41:15 +00:00
sha256 = "sha256-W6+zCLPcORGcRJF0F6/LRPap4SNVn/oKGs21T4nSNO0=";
2019-11-16 21:52:07 +00:00
};
2023-04-30 00:02:22 +00:00
vendorHash = null;
2023-04-30 01:51:31 +00:00
ldflags = [
"-s"
"-w"
"-X=main.version=${version}"
];
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/";
2023-04-30 01:51:31 +00:00
license = licenses.bsd3;
maintainers = with maintainers; [ ];
2019-11-16 21:52:07 +00:00
};
}