Skip to content

Commit

Permalink
gortr: Adopting package and refactor (#351612)
Browse files Browse the repository at this point in the history
  • Loading branch information
0x4A6F authored Nov 5, 2024
2 parents 3f1b3cc + 038bdcf commit e6ec6af
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 9 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{ lib
, buildGoModule
, fetchFromGitHub
{
lib,
buildGoModule,
fetchFromGitHub,
}:

buildGoModule rec {
Expand All @@ -11,7 +12,7 @@ buildGoModule rec {
owner = "cloudflare";
repo = pname;
rev = "v${version}";
sha256 = "sha256-W6+zCLPcORGcRJF0F6/LRPap4SNVn/oKGs21T4nSNO0=";
hash = "sha256-W6+zCLPcORGcRJF0F6/LRPap4SNVn/oKGs21T4nSNO0=";
};

vendorHash = null;
Expand All @@ -22,10 +23,10 @@ buildGoModule rec {
"-X=main.version=${version}"
];

meta = with lib; {
meta = {
description = "RPKI-to-Router server used at Cloudflare";
homepage = "https://github.com/cloudflare/gortr/";
license = licenses.bsd3;
maintainers = [ ];
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ stv0g ];
};
}
2 changes: 0 additions & 2 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -38234,8 +38234,6 @@ with pkgs;

sieveshell = with python3.pkgs; toPythonApplication managesieve;

gortr = callPackage ../servers/gortr { };

stayrtr = callPackage ../servers/stayrtr { };

sunshine = callPackage ../servers/sunshine { };
Expand Down

0 comments on commit e6ec6af

Please sign in to comment.