1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-20 04:31:52 +00:00
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 02:51:31 +01:00
{ lib
, buildGoModule
, fetchFromGitHub
}:
2019-11-16 21:52:07 +00:00
buildGoModule rec {
pname = "gortr";
2023-04-30 01:02:22 +01:00
version = "0.14.8";
2019-11-16 21:52:07 +00:00
src = fetchFromGitHub {
owner = "cloudflare";
repo = pname;
rev = "v${version}";
2023-04-30 01:02:22 +01:00
sha256 = "sha256-3aZf5HINoFIJrN+196kk1lt2S+fN9DlQakwGnkMU5U8=";
2019-11-16 21:52:07 +00:00
};
2023-04-30 01:02:22 +01:00
vendorHash = null;
2023-04-30 02:51:31 +01: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 02:51:31 +01:00
license = licenses.bsd3;
maintainers = with maintainers; [ ];
2019-11-16 21:52:07 +00:00
};
}