[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#31212] [PATCH 2/9] gnu: Add java-jsch-agentproxy-core.
From: |
Julien Lepiller |
Subject: |
[bug#31212] [PATCH 2/9] gnu: Add java-jsch-agentproxy-core. |
Date: |
Wed, 18 Apr 2018 21:21:13 +0200 |
* gnu/packages/java.scm (java-jsch-agentproxy-core): New variable.
---
gnu/packages/java.scm | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
diff --git a/gnu/packages/java.scm b/gnu/packages/java.scm
index 132671dc7..b32134daf 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)))
--
2.17.0
- [bug#31212] Add apache ivy, Julien Lepiller, 2018/04/18
- [bug#31212] [PATCH 1/9] gnu: Add java-bouncycastle., Julien Lepiller, 2018/04/18
- [bug#31212] [PATCH 4/9] gnu: Add java-jsch-agentproxy-usocket-jna., Julien Lepiller, 2018/04/18
- [bug#31212] [PATCH 2/9] gnu: Add java-jsch-agentproxy-core.,
Julien Lepiller <=
- [bug#31212] [PATCH 6/9] gnu: Add java-jsch-agentproxy-usocket-nc., Julien Lepiller, 2018/04/18
- [bug#31212] [PATCH 7/9] gnu: Add java-jsch-agentproxy-connector-factory., Julien Lepiller, 2018/04/18
- [bug#31212] [PATCH 5/9] gnu: Add java-jsch-agentproxy-pageant., Julien Lepiller, 2018/04/18
- [bug#31212] [PATCH 3/9] gnu: Add java-jsch-agentproxy-sshagent., Julien Lepiller, 2018/04/18
- [bug#31212] [PATCH 8/9] gnu: Add java-jsch-agentproxy-jsch., Julien Lepiller, 2018/04/18
- [bug#31212] [PATCH 9/9] gnu: Add java-apache-ivy., Julien Lepiller, 2018/04/18
- [bug#31212] Add apache ivy, Ludovic Courtès, 2018/04/28