pkgs/tools: stdenv.lib -> lib
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl }:
|
||||
{ lib, stdenv, fetchurl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "connect";
|
||||
@@ -19,11 +19,11 @@ stdenv.mkDerivation rec {
|
||||
description = "Make network connection via SOCKS and https proxy";
|
||||
longDescription = ''
|
||||
This proxy traversal tool is intended to assist OpenSSH (via ProxyCommand
|
||||
in ~/.ssh/config) and GIT (via $GIT_PROXY_COMMAND) utilize SOCKS and https proxies.
|
||||
in ~/.ssh/config) and GIT (via $GIT_PROXY_COMMAND) utilize SOCKS and https proxies.
|
||||
'';
|
||||
homepage = "https://bitbucket.org/gotoh/connect/wiki/Home";
|
||||
license = stdenv.lib.licenses.gpl2Plus;
|
||||
platforms = stdenv.lib.platforms.gnu ++ stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin;
|
||||
maintainers = with stdenv.lib.maintainers; [ jcumming ];
|
||||
license = lib.licenses.gpl2Plus;
|
||||
platforms = lib.platforms.gnu ++ stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin;
|
||||
maintainers = with lib.maintainers; [ jcumming ];
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user