mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-30 19:02:57 +00:00
[Backport release-24.05] easytier: init at 1.2.3 (#345958)
This commit is contained in:
commit
7886208f96
@ -11557,6 +11557,12 @@
|
||||
githubId = 8555953;
|
||||
name = "Laure Tavard";
|
||||
};
|
||||
ltrump = {
|
||||
email = "ltrump@163.com";
|
||||
github = "L-Trump";
|
||||
githubId = 37738631;
|
||||
name = "Luo Chen";
|
||||
};
|
||||
ltstf1re = {
|
||||
email = "ltstf1re@disroot.org";
|
||||
github = "lsf1re";
|
||||
|
51
pkgs/by-name/ea/easytier/package.nix
Normal file
51
pkgs/by-name/ea/easytier/package.nix
Normal file
@ -0,0 +1,51 @@
|
||||
{
|
||||
lib,
|
||||
stdenv,
|
||||
fetchFromGitHub,
|
||||
rustPlatform,
|
||||
protobuf,
|
||||
nix-update-script,
|
||||
darwin,
|
||||
withQuic ? false, # with QUIC protocol support
|
||||
}:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "easytier";
|
||||
version = "1.2.3";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "EasyTier";
|
||||
repo = "EasyTier";
|
||||
rev = "refs/tags/v${version}";
|
||||
hash = "sha256-7T6xdJrVTgg7rSTC2PaVTsBTgi14qJzaR6M8tRUL8OQ=";
|
||||
};
|
||||
|
||||
cargoHash = "sha256-9wAGUVYKz7+Q8y+dmay8pEZnv7PikzuAoas/h5T3sLE=";
|
||||
|
||||
nativeBuildInputs = [ protobuf ];
|
||||
|
||||
buildInputs = lib.optionals stdenv.isDarwin [
|
||||
darwin.apple_sdk.frameworks.Security
|
||||
];
|
||||
|
||||
buildNoDefaultFeatures = stdenv.isMips;
|
||||
buildFeatures = lib.optional stdenv.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 ];
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user