2020-04-16 08:03:01 +01:00
|
|
|
{ lib, buildGoModule, fetchFromGitHub, nixosTests }:
|
2019-06-27 16:54:01 +01:00
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "yggdrasil";
|
2020-04-02 09:42:34 +01:00
|
|
|
version = "0.3.14";
|
2019-06-27 16:54:01 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "yggdrasil-network";
|
|
|
|
repo = "yggdrasil-go";
|
|
|
|
rev = "v${version}";
|
2020-04-02 09:42:34 +01:00
|
|
|
sha256 = "147kl2kvv1rn3yk0mlvd998a2yayjl07csxxkjvs6264j6csb860";
|
2019-06-27 16:54:01 +01:00
|
|
|
};
|
|
|
|
|
2020-05-01 02:59:00 +01:00
|
|
|
vendorSha256 = "09xv2p9rydnsb185x61fxhyjqx41wz285c1gdd47ad3s08ay1qc7";
|
2019-06-27 16:54:01 +01:00
|
|
|
|
2020-08-04 01:26:27 +01:00
|
|
|
doCheck = false;
|
|
|
|
|
2019-06-27 16:54:01 +01:00
|
|
|
# Change the default location of the management socket on Linux
|
|
|
|
# systems so that the yggdrasil system service unit does not have to
|
|
|
|
# be granted write permission to /run.
|
|
|
|
patches = [ ./change-runtime-dir.patch ];
|
|
|
|
|
|
|
|
subPackages = [ "cmd/yggdrasil" "cmd/yggdrasilctl" ];
|
|
|
|
|
|
|
|
buildFlagsArray = ''
|
|
|
|
-ldflags=
|
|
|
|
-X github.com/yggdrasil-network/yggdrasil-go/src/version.buildVersion=${version}
|
|
|
|
-X github.com/yggdrasil-network/yggdrasil-go/src/version.buildName=${pname}
|
|
|
|
-s -w
|
|
|
|
'';
|
|
|
|
|
2020-04-16 08:03:01 +01:00
|
|
|
passthru.tests.basic = nixosTests.yggdrasil;
|
|
|
|
|
2020-03-27 07:33:21 +00:00
|
|
|
meta = with lib; {
|
2020-03-12 16:07:00 +00:00
|
|
|
description =
|
|
|
|
"An experiment in scalable routing as an encrypted IPv6 overlay network";
|
2019-06-27 16:54:01 +01:00
|
|
|
homepage = "https://yggdrasil-network.github.io/";
|
|
|
|
license = licenses.lgpl3;
|
2020-03-12 16:07:00 +00:00
|
|
|
maintainers = with maintainers; [ ehmry gazally lassulus ];
|
2019-06-27 16:54:01 +01:00
|
|
|
};
|
2020-07-31 04:58:04 +01:00
|
|
|
}
|