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

34 lines
839 B
Nix
Raw Normal View History

{ lib, stdenv
2020-05-01 17:16:25 +03:00
, rustPlatform
, fetchFromGitHub
, openssl
, pkg-config
, Security
}:
rustPlatform.buildRustPackage rec {
2020-05-28 12:57:57 +03:00
pname = "tunnelto";
2020-07-31 15:35:11 +03:00
version = "0.1.12";
2020-05-01 17:16:25 +03:00
src = fetchFromGitHub {
owner = "agrinman";
repo = pname;
rev = version;
2020-07-31 15:35:11 +03:00
sha256 = "1vvb619cq3n88y2s8lncwcyrhb5s4gpjfiyia91pilcpnfdb04y2";
2020-05-01 17:16:25 +03:00
};
2020-07-31 15:35:11 +03:00
cargoSha256 = "0k0ig3dynj46kh8g7d6bljcaalmp40pvdbhbjmlxrmwnjq6bhzcq";
2020-05-01 17:16:25 +03:00
nativeBuildInputs = stdenv.lib.optionals stdenv.isLinux [ pkg-config ];
buildInputs = [ ]
++ stdenv.lib.optionals stdenv.isLinux [ openssl ]
++ stdenv.lib.optionals stdenv.isDarwin [ Security ];
meta = with lib; {
2020-05-01 17:16:25 +03: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 17:16:25 +03:00
};
}