diff options
author | Julien Lepiller <julien@lepiller.eu> | 2018-04-18 17:04:17 +0200 |
---|---|---|
committer | Julien Lepiller <julien@lepiller.eu> | 2018-04-29 23:23:03 +0200 |
commit | 475225e3064a4203595de0eacfc032f4fc6fb85b (patch) | |
tree | f751b1983efdcb6f286cfd6a2a6429383e529110 /gnu/packages | |
parent | f438e63835390b0cd72f603763d0872ddf518f3e (diff) |
gnu: Add java-jsch-agentproxy-pageant.
* gnu/packages/java.scm (java-jsch-agentproxy-pageant): New variable.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/java.scm | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/gnu/packages/java.scm b/gnu/packages/java.scm index 0b4656dff8..22d6f6fb04 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."))) |