Unverified Commit 1dfc1e78 authored by Mario Rodas's avatar Mario Rodas Committed by GitHub
Browse files

Merge pull request #229034 from figsoda/gortr

gortr: fix version, fix license
parents f6e2472f ab84d867
Loading
Loading
Loading
Loading
+11 −2
Original line number Diff line number Diff line
{ lib, fetchFromGitHub, buildGoModule }:
{ lib
, buildGoModule
, fetchFromGitHub
}:

buildGoModule rec {
  pname = "gortr";
@@ -13,10 +16,16 @@ buildGoModule rec {

  vendorHash = null;

  ldflags = [
    "-s"
    "-w"
    "-X=main.version=${version}"
  ];

  meta = with lib; {
    description = "The RPKI-to-Router server used at Cloudflare";
    homepage = "https://github.com/cloudflare/gortr/";
    license = licenses.gpl3;
    license = licenses.bsd3;
    maintainers = with maintainers; [ ];
  };
}