From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:47033) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1f8seb-0000u1-GM for guix-patches@gnu.org; Wed, 18 Apr 2018 15:22:09 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1f8seZ-0004TC-VH for guix-patches@gnu.org; Wed, 18 Apr 2018 15:22:05 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:51741) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1f8seZ-0004T7-Rs for guix-patches@gnu.org; Wed, 18 Apr 2018 15:22:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1f8seZ-0001H3-MH for guix-patches@gnu.org; Wed, 18 Apr 2018 15:22:03 -0400 Subject: [bug#31212] [PATCH 5/9] gnu: Add java-jsch-agentproxy-pageant. Resent-Message-ID: From: Julien Lepiller Date: Wed, 18 Apr 2018 21:21:16 +0200 Message-Id: <20180418192120.11603-5-julien@lepiller.eu> In-Reply-To: <20180418192120.11603-1-julien@lepiller.eu> References: <20180418210458.306490ed@lepiller.eu> <20180418192120.11603-1-julien@lepiller.eu> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 31212@debbugs.gnu.org * gnu/packages/java.scm (java-jsch-agentproxy-pageant): New variable. --- gnu/packages/java.scm | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/gnu/packages/java.scm b/gnu/packages/java.scm index 0b4656dff..22d6f6fb0 100644 --- a/gnu/packages/java.scm +++ b/gnu/packages/java.scm @@ -9639,3 +9639,20 @@ ssh-agent."))) (description "jsch-agent-proxy is a proxy program to OpenSSH's ssh-agent and Pageant included in Putty. This component contains an implementation of USocketFactory using @dfn{JNA} (Java Native Access)."))) + +(define-public java-jsch-agentproxy-pageant + (package + (inherit java-jsch-agentproxy-core) + (name "java-jsch-agentproxy-pageant") + (arguments + `(#:jar-name "jsch-agentproxy-pageant.jar" + #:source-dir "jsch-agent-proxy-pageant/src/main/java" + #:tests? #f)); no tests + (inputs + `(("java-jsch-agentproxy-core" ,java-jsch-agentproxy-core) + ("java-native-access" ,java-native-access) + ("java-native-access-platform" ,java-native-access-platform))) + (synopsis "Proxy to pageant") + (description "jsch-agent-proxy is a proxy program to OpenSSH's ssh-agent +and Pageant included in Putty. This component contains the code for a proxy to +pageant."))) -- 2.17.0