1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-19 20:21:14 +00:00

Merge pull request #229034 from figsoda/gortr

gortr: fix version, fix license
This commit is contained in:
Mario Rodas 2023-04-30 09:41:08 -05:00 committed by GitHub
commit 1dfc1e781c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,4 +1,7 @@
{ 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; [ ];
};
}