diff options
author | Julien Lepiller <julien@lepiller.eu> | 2018-04-05 19:54:02 +0200 |
---|---|---|
committer | Julien Lepiller <julien@lepiller.eu> | 2018-04-29 23:22:56 +0200 |
commit | 470674a541ffaf25022e371a3bbd6361f7329cff (patch) | |
tree | 56a513af97dba3f4186514fde44fd612ba7f643c /gnu/packages | |
parent | 50d70a727b93e5b348ddb5fa597f411da277e35d (diff) | |
download | guix-470674a541ffaf25022e371a3bbd6361f7329cff.tar.gz guix-470674a541ffaf25022e371a3bbd6361f7329cff.zip |
gnu: Add java-jsch-agentproxy-core.
* gnu/packages/java.scm (java-jsch-agentproxy-core): New variable.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/java.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/java.scm b/gnu/packages/java.scm index 132671dc70..b32134daf7 100644 --- a/gnu/packages/java.scm +++ b/gnu/packages/java.scm @@ -9584,3 +9584,27 @@ Java method invocation.") and mappings for a number of commonly used platform functions, including a large number of Win32 mappings as well as a set of utility classes that simplify native access."))) + +(define-public java-jsch-agentproxy-core + (package + (name "java-jsch-agentproxy-core") + (version "0.0.8") + (source (origin + (method url-fetch) + (uri (string-append "https://github.com/ymnk/jsch-agent-proxy/archive/" + version ".tar.gz")) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "02iqg6jbc1kxvfzqcg6wy9ygqxfm82bw5rf6vnswqy4y572niz4q")))) + (build-system ant-build-system) + (arguments + `(#:jar-name "jsch-agentproxy-core.jar" + #:source-dir "jsch-agent-proxy-core/src/main/java" + #:tests? #f)); no tests + (home-page "https://github.com/ymnk/jsch-agent-proxy") + (synopsis "Proxy to ssh-agent and Pageant in Java") + (description "jsch-agent-proxy is a proxy program to OpenSSH's ssh-agent +and Pageant included Putty. It will be easily integrated into JSch, and users +will be allowed to use these programs for authentication.") + (license license:bsd-3))) |