From 8be6c852be8e6c2e1d6c0e48ea6e44ef2364e280 Mon Sep 17 00:00:00 2001 From: figsoda Date: Fri, 18 Aug 2023 12:45:56 -0400 Subject: [PATCH] sshuttle: clarify license, add changelog --- pkgs/tools/security/sshuttle/default.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/security/sshuttle/default.nix b/pkgs/tools/security/sshuttle/default.nix index 7a8f7dfe6711..8a92dbceb184 100644 --- a/pkgs/tools/security/sshuttle/default.nix +++ b/pkgs/tools/security/sshuttle/default.nix @@ -49,14 +49,15 @@ python3Packages.buildPythonApplication rec { ''; meta = with lib; { - homepage = "https://github.com/sshuttle/sshuttle/"; description = "Transparent proxy server that works as a poor man's VPN"; longDescription = '' Forward connections over SSH, without requiring administrator access to the target network (though it does require Python 2.7, Python 3.5 or later at both ends). Works with Linux and Mac OS and supports DNS tunneling. ''; - license = licenses.lgpl21; + homepage = "https://github.com/sshuttle/sshuttle"; + changelog = "https://github.com/sshuttle/sshuttle/blob/v${version}/CHANGES.rst"; + license = licenses.lgpl21Plus; maintainers = with maintainers; [ domenkozar carlosdagos ]; }; }