nixpkgs-suyu/pkgs/tools/networking/yggdrasil/default.nix

39 lines
1.2 KiB
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub, nixosTests }:
2019-06-27 17:54:01 +02:00
buildGoModule rec {
pname = "yggdrasil";
2021-11-04 03:58:46 +01:00
version = "0.4.2";
2019-06-27 17:54:01 +02:00
src = fetchFromGitHub {
owner = "yggdrasil-network";
repo = "yggdrasil-go";
rev = "v${version}";
2021-11-04 03:58:46 +01:00
sha256 = "sha256-5bx9KGZD7m+FX9hWU1pu8uJ2FU+P/TetRS3kJL5jhhI=";
2019-06-27 17:54:01 +02:00
};
2021-07-04 17:33:28 +02:00
vendorSha256 = "sha256-QQN8ePOQ7DT9KeuY4ohFuPtocuinh3Y3us6QMnCQ4gc=";
2019-06-27 17:54:01 +02: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 ];
2021-10-12 00:04:27 +02:00
subPackages = [ "cmd/genkeys" "cmd/yggdrasil" "cmd/yggdrasilctl" ];
2019-06-27 17:54:01 +02:00
2021-08-26 08:45:51 +02:00
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"
];
2019-06-27 17:54:01 +02:00
passthru.tests.basic = nixosTests.yggdrasil;
meta = with lib; {
2020-03-12 17:07:00 +01:00
description =
"An experiment in scalable routing as an encrypted IPv6 overlay network";
2019-06-27 17:54:01 +02:00
homepage = "https://yggdrasil-network.github.io/";
license = licenses.lgpl3;
2021-11-04 03:58:46 +01:00
maintainers = with maintainers; [ bbigras ehmry gazally lassulus ];
2019-06-27 17:54:01 +02:00
};
}