2024-09-26 11:04:55 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
stdenv,
|
|
|
|
fetchFromGitHub,
|
|
|
|
rustPlatform,
|
|
|
|
protobuf,
|
|
|
|
nix-update-script,
|
|
|
|
darwin,
|
|
|
|
withQuic ? false, # with QUIC protocol support
|
|
|
|
}:
|
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "easytier";
|
2024-10-04 16:56:33 +00:00
|
|
|
version = "2.0.0";
|
2024-09-26 11:04:55 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "EasyTier";
|
|
|
|
repo = "EasyTier";
|
|
|
|
rev = "refs/tags/v${version}";
|
2024-10-04 16:56:33 +00:00
|
|
|
hash = "sha256-Qej6g9oxY6Wvv7jbyK9TN7QE7sfrdref7XPj10mSKUg=";
|
2024-09-26 11:04:55 +00:00
|
|
|
};
|
|
|
|
|
2024-10-04 16:56:33 +00:00
|
|
|
cargoHash = "sha256-UegTL9ZdqLQYtcg8sJSGkie3ezt9OFMX0iVm/B1D91I=";
|
2024-09-26 11:04:55 +00:00
|
|
|
|
|
|
|
nativeBuildInputs = [ protobuf ];
|
|
|
|
|
|
|
|
buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [
|
|
|
|
darwin.apple_sdk.frameworks.Security
|
|
|
|
];
|
|
|
|
|
|
|
|
buildNoDefaultFeatures = stdenv.hostPlatform.isMips;
|
|
|
|
buildFeatures = lib.optional stdenv.hostPlatform.isMips "mips" ++ lib.optional withQuic "quic";
|
|
|
|
|
|
|
|
doCheck = false; # tests failed due to heavy rely on network
|
|
|
|
|
|
|
|
passthru.updateScript = nix-update-script { };
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = "https://github.com/EasyTier/EasyTier";
|
|
|
|
changelog = "https://github.com/EasyTier/EasyTier/releases/tag/v${version}";
|
|
|
|
description = "Simple, decentralized mesh VPN with WireGuard support";
|
|
|
|
longDescription = ''
|
|
|
|
EasyTier is a simple, safe and decentralized VPN networking solution implemented
|
|
|
|
with the Rust language and Tokio framework.
|
|
|
|
'';
|
|
|
|
mainProgram = "easytier-core";
|
|
|
|
license = lib.licenses.asl20;
|
|
|
|
platforms = with lib.platforms; unix ++ windows;
|
|
|
|
maintainers = with lib.maintainers; [ ltrump ];
|
|
|
|
};
|
|
|
|
}
|