nixpkgs/pkgs/tools/networking/tunnelto/default.nix

34 lines
818 B
Nix
Raw Normal View History

{ lib, stdenv
2020-05-01 14:16:25 +00:00
, rustPlatform
, fetchFromGitHub
, openssl
, pkg-config
, Security
}:
rustPlatform.buildRustPackage rec {
2020-05-28 09:57:57 +00:00
pname = "tunnelto";
2020-07-31 12:35:11 +00:00
version = "0.1.12";
2020-05-01 14:16:25 +00:00
src = fetchFromGitHub {
owner = "agrinman";
repo = pname;
rev = version;
2020-07-31 12:35:11 +00:00
sha256 = "1vvb619cq3n88y2s8lncwcyrhb5s4gpjfiyia91pilcpnfdb04y2";
2020-05-01 14:16:25 +00:00
};
2020-07-31 12:35:11 +00:00
cargoSha256 = "0k0ig3dynj46kh8g7d6bljcaalmp40pvdbhbjmlxrmwnjq6bhzcq";
2020-05-01 14:16:25 +00:00
2021-01-15 09:19:50 +00:00
nativeBuildInputs = lib.optionals stdenv.isLinux [ pkg-config ];
2020-05-01 14:16:25 +00:00
buildInputs = [ ]
2021-01-15 09:19:50 +00:00
++ lib.optionals stdenv.isLinux [ openssl ]
++ lib.optionals stdenv.isDarwin [ Security ];
2020-05-01 14:16:25 +00:00
meta = with lib; {
2020-05-01 14:16:25 +00:00
description = "Expose your local web server to the internet with a public URL";
homepage = "https://tunnelto.dev";
license = licenses.mit;
maintainers = with maintainers; [ Br1ght0ne ];
2020-05-01 14:16:25 +00:00
};
}