2021-01-11 08:54:33 +01:00
|
|
|
{ lib, stdenv
|
2020-05-01 16:16:25 +02:00
|
|
|
, rustPlatform
|
|
|
|
, fetchFromGitHub
|
|
|
|
, openssl
|
|
|
|
, pkg-config
|
|
|
|
, Security
|
|
|
|
}:
|
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
2020-05-28 11:57:57 +02:00
|
|
|
pname = "tunnelto";
|
2023-01-13 02:33:54 +01:00
|
|
|
version = "unstable-2022-09-25";
|
2020-05-01 16:16:25 +02:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "agrinman";
|
|
|
|
repo = pname;
|
2023-01-13 02:33:54 +01:00
|
|
|
rev = "06428f13c638180dd349a4c42a17b569ab51a25f";
|
|
|
|
sha256 = "sha256-84jGcR/E1QoqIlbGu67muYUtZU66ZJtj4tdZvmYbII4=";
|
2020-05-01 16:16:25 +02:00
|
|
|
};
|
|
|
|
|
2023-03-26 00:16:46 +01:00
|
|
|
cargoLock = {
|
|
|
|
lockFile = ./Cargo.lock;
|
|
|
|
outputHashes = {
|
|
|
|
"libhoney-rust-0.1.6" = "sha256-orKQ+MNHF1VSo74XahY9NFf5qMm0Wj95y6nbaG3Ivog=";
|
|
|
|
"tracing-distributed-0.3.1" = "sha256-i+2wqIp1BFmHEnd56Wp49LzEkTR9k5xgru1UIjj3Qys=";
|
|
|
|
};
|
|
|
|
};
|
2020-05-01 16:16:25 +02:00
|
|
|
|
2021-01-15 10:19:50 +01:00
|
|
|
nativeBuildInputs = lib.optionals stdenv.isLinux [ pkg-config ];
|
2020-05-01 16:16:25 +02:00
|
|
|
buildInputs = [ ]
|
2021-01-15 10:19:50 +01:00
|
|
|
++ lib.optionals stdenv.isLinux [ openssl ]
|
|
|
|
++ lib.optionals stdenv.isDarwin [ Security ];
|
2020-05-01 16:16:25 +02:00
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2020-05-01 16:16:25 +02:00
|
|
|
description = "Expose your local web server to the internet with a public URL";
|
|
|
|
homepage = "https://tunnelto.dev";
|
|
|
|
license = licenses.mit;
|
2020-11-17 12:02:06 +01:00
|
|
|
maintainers = with maintainers; [ Br1ght0ne ];
|
2020-05-01 16:16:25 +02:00
|
|
|
};
|
|
|
|
}
|