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";
|
2020-07-31 14:35:11 +02:00
|
|
|
version = "0.1.12";
|
2020-05-01 16:16:25 +02:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "agrinman";
|
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2020-07-31 14:35:11 +02:00
|
|
|
sha256 = "1vvb619cq3n88y2s8lncwcyrhb5s4gpjfiyia91pilcpnfdb04y2";
|
2020-05-01 16:16:25 +02:00
|
|
|
};
|
|
|
|
|
2021-05-07 13:00:49 +02:00
|
|
|
cargoSha256 = "1pjd62yz7pavcinc96g2x0f5giadl9aqvz1i5vhfanh6mj6mrbl1";
|
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
|
|
|
};
|
|
|
|
}
|