2020-03-21 11:09:00 +00:00
|
|
|
{ stdenv, buildGoModule, fetchFromGitHub, Foundation }:
|
2019-06-27 16:54:01 +01:00
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "yggdrasil";
|
2020-03-12 16:07:00 +00:00
|
|
|
version = "0.3.13";
|
2019-06-27 16:54:01 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "yggdrasil-network";
|
|
|
|
repo = "yggdrasil-go";
|
|
|
|
rev = "v${version}";
|
2020-03-12 16:07:00 +00:00
|
|
|
sha256 = "1k3xxarrl33sxik1dqahfllrhd501xqq5q5mcn4y5wi9lwywsy50";
|
2019-06-27 16:54:01 +01:00
|
|
|
};
|
|
|
|
|
2020-03-12 16:07:00 +00:00
|
|
|
modSha256 = "057yl3i29kwpd129aa2rb67s5rmz898fi2a7lxv3nfjp7018s9qw";
|
2019-06-27 16:54:01 +01:00
|
|
|
|
2020-03-21 11:09:00 +00:00
|
|
|
buildInputs = stdenv.lib.optionals stdenv.isDarwin [ Foundation ];
|
|
|
|
|
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-03-21 11:09:00 +00:00
|
|
|
meta = with stdenv.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;
|
|
|
|
platforms = platforms.all;
|
2020-03-12 16:07:00 +00:00
|
|
|
maintainers = with maintainers; [ ehmry gazally lassulus ];
|
2019-06-27 16:54:01 +01:00
|
|
|
};
|
|
|
|
}
|