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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

34 lines
816 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";
2021-08-17 19:20:39 +03:00
version = "0.1.18";
2020-05-01 17:16:25 +03:00
src = fetchFromGitHub {
owner = "agrinman";
repo = pname;
rev = version;
2021-08-17 19:20:39 +03:00
sha256 = "sha256-dCHl5EXjUagOKeHxqb3GlAoSDw0u3tQ4GKEtbFF8OSs=";
2020-05-01 17:16:25 +03:00
};
2021-08-17 19:20:39 +03:00
cargoSha256 = "sha256-6HU1w69cJj+tE1IUUNoxh0cHEwlRKF5qWx7FiOHeUNk=";
2020-05-01 17:16:25 +03:00
2021-01-15 12:19:50 +03:00
nativeBuildInputs = lib.optionals stdenv.isLinux [ pkg-config ];
2020-05-01 17:16:25 +03:00
buildInputs = [ ]
2021-01-15 12:19:50 +03:00
++ lib.optionals stdenv.isLinux [ openssl ]
++ lib.optionals stdenv.isDarwin [ Security ];
2020-05-01 17:16:25 +03:00
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
};
}