Merge pull request #330634 from r-ryantm/auto-update/circumflex
[NixPkgs.git] / pkgs / servers / gortr / default.nix
blob408b5289382a7b239ae90d5aa7debdab650e3f9f
1 { lib
2 , buildGoModule
3 , fetchFromGitHub
4 }:
6 buildGoModule rec {
7   pname = "gortr";
8   version = "0.15.0";
10   src = fetchFromGitHub {
11     owner = "cloudflare";
12     repo = pname;
13     rev = "v${version}";
14     sha256 = "sha256-W6+zCLPcORGcRJF0F6/LRPap4SNVn/oKGs21T4nSNO0=";
15   };
17   vendorHash = null;
19   ldflags = [
20     "-s"
21     "-w"
22     "-X=main.version=${version}"
23   ];
25   meta = with lib; {
26     description = "RPKI-to-Router server used at Cloudflare";
27     homepage = "https://github.com/cloudflare/gortr/";
28     license = licenses.bsd3;
29     maintainers = with maintainers; [ ];
30   };