about summary refs log tree commit diff
path: root/pkgs/tools/networking/tunnelto/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/tools/networking/tunnelto/default.nix')
-rw-r--r--pkgs/tools/networking/tunnelto/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/networking/tunnelto/default.nix b/pkgs/tools/networking/tunnelto/default.nix
index 4bf251be81fce..a91a82b9d5dd4 100644
--- a/pkgs/tools/networking/tunnelto/default.nix
+++ b/pkgs/tools/networking/tunnelto/default.nix
@@ -1,4 +1,4 @@
-{ stdenv
+{ lib, stdenv
 , rustPlatform
 , fetchFromGitHub
 , openssl
@@ -24,7 +24,7 @@ rustPlatform.buildRustPackage rec {
     ++ stdenv.lib.optionals stdenv.isLinux [ openssl ]
     ++ stdenv.lib.optionals stdenv.isDarwin [ Security ];
 
-  meta = with stdenv.lib; {
+  meta = with lib; {
     description = "Expose your local web server to the internet with a public URL";
     homepage = "https://tunnelto.dev";
     license = licenses.mit;