2022-02-04 12:16:47 +00:00
|
|
|
{ lib, buildGoModule, fetchFromGitHub }:
|
2019-11-22 13:07:18 +00:00
|
|
|
|
2022-02-04 12:16:47 +00:00
|
|
|
buildGoModule rec {
|
2019-11-22 13:07:18 +00:00
|
|
|
pname = "nebula";
|
2022-09-27 18:24:43 +01:00
|
|
|
version = "1.6.1";
|
2019-11-22 13:07:18 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "slackhq";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2022-09-27 18:24:43 +01:00
|
|
|
sha256 = "sha256-IsLSlQsrfw3obkz4jHL23BRQY2fviGbPEvs5j0zkdX0=";
|
2019-11-22 13:07:18 +00:00
|
|
|
};
|
|
|
|
|
2022-07-02 13:52:13 +01:00
|
|
|
vendorSha256 = "sha256-GvMiOEC3Y/pGG++Z+XCgLVADKymUR9shDxjx3xIz8u0=";
|
2019-11-22 13:07:18 +00:00
|
|
|
|
|
|
|
subPackages = [ "cmd/nebula" "cmd/nebula-cert" ];
|
|
|
|
|
2021-08-26 07:45:51 +01:00
|
|
|
ldflags = [ "-X main.Build=${version}" ];
|
2019-11-22 13:07:18 +00:00
|
|
|
|
2020-03-27 07:33:21 +00:00
|
|
|
meta = with lib; {
|
2019-11-22 13:07:18 +00:00
|
|
|
description = "A scalable overlay networking tool with a focus on performance, simplicity and security";
|
|
|
|
longDescription = ''
|
|
|
|
Nebula is a scalable overlay networking tool with a focus on performance,
|
|
|
|
simplicity and security. It lets you seamlessly connect computers
|
|
|
|
anywhere in the world. Nebula is portable, and runs on Linux, OSX, and
|
|
|
|
Windows. (Also: keep this quiet, but we have an early prototype running
|
|
|
|
on iOS). It can be used to connect a small number of computers, but is
|
|
|
|
also able to connect tens of thousands of computers.
|
|
|
|
|
|
|
|
Nebula incorporates a number of existing concepts like encryption,
|
|
|
|
security groups, certificates, and tunneling, and each of those
|
|
|
|
individual pieces existed before Nebula in various forms. What makes
|
|
|
|
Nebula different to existing offerings is that it brings all of these
|
|
|
|
ideas together, resulting in a sum that is greater than its individual
|
|
|
|
parts.
|
|
|
|
'';
|
|
|
|
homepage = "https://github.com/slackhq/nebula";
|
|
|
|
license = licenses.mit;
|
2021-12-31 08:00:15 +00:00
|
|
|
maintainers = with maintainers; [ Br1ght0ne numinit ];
|
2019-11-22 13:07:18 +00:00
|
|
|
};
|
|
|
|
|
2020-07-31 04:58:04 +01:00
|
|
|
}
|