38 lines
1.1 KiB
Nix
38 lines
1.1 KiB
Nix
{ lib, buildGoModule, fetchFromGitHub }:
|
|
|
|
buildGoModule rec {
|
|
pname = "yggdrasil";
|
|
version = "0.3.12";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "yggdrasil-network";
|
|
repo = "yggdrasil-go";
|
|
rev = "v${version}";
|
|
sha256 = "03ywxamjcnhcr20vm9pn3rq3hqq49i6rfdvx44czzr30h8xp8dhw";
|
|
};
|
|
|
|
modSha256 = "1vqk0jyqc1qcryi247r5pbvfjw3m48l028fb2mrq1xqqfkjqrr85";
|
|
|
|
# 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
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "An experiment in scalable routing as an encrypted IPv6 overlay network";
|
|
homepage = "https://yggdrasil-network.github.io/";
|
|
license = licenses.lgpl3;
|
|
platforms = platforms.all;
|
|
maintainers = with maintainers; [ gazally lassulus ];
|
|
};
|
|
}
|