>From 3ea3acbd6cc141687107b1ad2a14bad7cefb9ebe Mon Sep 17 00:00:00 2001 From: Julien Lepiller Date: Tue, 24 Oct 2017 22:36:11 +0200 Subject: [PATCH 12/22] gnu: Add java-bouncycastle-bcprov. * gnu/packages/java.scm (java-bouncycastle-bcprov): New variable. --- gnu/packages/java.scm | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/gnu/packages/java.scm b/gnu/packages/java.scm index 19c3f116e..237f43431 100644 --- a/gnu/packages/java.scm +++ b/gnu/packages/java.scm @@ -6651,3 +6651,34 @@ configuration and string construction.") (description "LZ4 - Java is a Java port of the popular lz4 compression algorithms and xxHash hashing algorithm.") (license license:asl2.0))) + +(define-public java-bouncycastle-bcprov + (package + (name "java-bouncycastle-bcprov") + (version "1.58") + (source (origin + (method url-fetch) + (uri "https://bouncycastle.org/download/bcprov-jdk15on-158.tar.gz") + (sha256 + (base32 + "1hgkg96llbvgs8i0krwz2n0j7wlg6jfnq8w8kg0cc899j0wfmf3n")))) + (build-system ant-build-system) + (arguments + `(#:jar-name "bouncycastle-bcprov.jar" + #:tests? #f; no tests + #:source-dir "src" + #:phases + (modify-phases %standard-phases + (add-before 'configure 'unzip-src + (lambda _ + (mkdir-p "src") + (with-directory-excursion "src" + (zero? (system* "unzip" "../src.zip")))))))) + (native-inputs + `(("unzip" ,unzip) + ("junit" ,java-junit))) + (home-page "https://www.bouncycastle.org") + (synopsis "Cryptographic library") + (description "Bouncy Castle Provider (bcprov) is a cryptographic library +for the Java programming language.") + (license license:expat))) -- 2.14.3