
This patch was produced in Vim by me, a human being. All errors are the fault of the operator. I did try to be careful. Co-authored-by: Peder Bergebakken Sundt <pbsds@hotmail.com> Co-authored-by: dotlambda <nix@dotlambda.de>
49 lines
1.1 KiB
Nix
49 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
nixosTests,
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "yggdrasil";
|
|
version = "0.5.12";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "yggdrasil-network";
|
|
repo = "yggdrasil-go";
|
|
rev = "v${version}";
|
|
hash = "sha256-NlNQnYmK//p35pj2MInD6RVsajM/bGDhOuzOZZYoWRw=";
|
|
};
|
|
|
|
vendorHash = "sha256-xZpUWIR3xTjhhNSwPoHx7GLUgcZJrWfF0FMExlluBmg=";
|
|
|
|
subPackages = [
|
|
"cmd/genkeys"
|
|
"cmd/yggdrasil"
|
|
"cmd/yggdrasilctl"
|
|
];
|
|
|
|
ldflags = [
|
|
"-X github.com/yggdrasil-network/yggdrasil-go/src/version.buildVersion=${version}"
|
|
"-X github.com/yggdrasil-network/yggdrasil-go/src/version.buildName=yggdrasil"
|
|
"-X github.com/yggdrasil-network/yggdrasil-go/src/config.defaultAdminListen=unix:///var/run/yggdrasil/yggdrasil.sock"
|
|
"-s"
|
|
"-w"
|
|
];
|
|
|
|
passthru.tests.basic = nixosTests.yggdrasil;
|
|
|
|
meta = with lib; {
|
|
description = "Experiment in scalable routing as an encrypted IPv6 overlay network";
|
|
homepage = "https://yggdrasil-network.github.io/";
|
|
license = licenses.lgpl3;
|
|
maintainers = with maintainers; [
|
|
ehmry
|
|
gazally
|
|
lassulus
|
|
peigongdsd
|
|
];
|
|
};
|
|
}
|