guix-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[bug#30417] [PATCH 02/11] gnu: Add java-plexus-cipher.


From: Björn Höfling
Subject: [bug#30417] [PATCH 02/11] gnu: Add java-plexus-cipher.
Date: Mon, 12 Feb 2018 00:42:06 +0100

On Sun, 11 Feb 2018 00:04:29 +0100
Julien Lepiller <address@hidden> wrote:

> * gnu/packages/java.scm (java-plexus-cipher): New variable.
> ---
>  gnu/packages/java.scm | 36 ++++++++++++++++++++++++++++++++++++
>  1 file changed, 36 insertions(+)
> 
> diff --git a/gnu/packages/java.scm b/gnu/packages/java.scm
> index b7f3fd54e..8b51f7122 100644
> --- a/gnu/packages/java.scm
> +++ b/gnu/packages/java.scm
> @@ -2673,6 +2673,42 @@ archives (jar).")
>      (inputs '())
>      (native-inputs '())))
>  
> +(define-public java-plexus-cipher
> +  (package
> +    (name "java-plexus-cipher")
> +    (version "1.7")
> +    (source (origin
> +              (method url-fetch)
> +              (uri (string-append
> "https://github.com/codehaus-plexus/plexus-cipher";
> +                                  "/archive/plexus-cipher-" version
> ".tar.gz"))
> +              (sha256
> +               (base32
> +
> "1j3r8xzlxlk340snkjp6lk2ilkxlkn8qavsfiq01f43xmvv8ymk3"))))
> +    (build-system ant-build-system)
> +    (arguments
> +     `(#:jar-name "plexus-cipher.jar"
> +       #:source-dir "src/main/java"
> +       #:jdk ,icedtea-8
> +       #:tests? #f; FIXME: requires sisu-inject-bean
> +       #:phases
> +       (modify-phases %standard-phases
> +         (add-before 'build 'copy-resources
> +           (lambda _
> +             (copy-recursively "src/main/resources" "build/classes")
> +             (mkdir-p "build/classes/META-INF/sisu")
> +             (with-output-to-file
> "build/classes/META-INF/sisu/javax.inject.Named"
> +               (lambda _
> +                 (display
> "org.sonatype.plexus.components.cipher.DefaultPlexusCipher\n")))
> +             #t)))))
> +    (inputs
> +     `(("java-cdi-api" ,java-cdi-api)
> +       ("java-javax-inject" ,java-javax-inject)))
> +    (home-page "http://codehaus-plexus.github.io/plexus-cipher/";)

For the Homepage I get a 404.
That's what I find as an
alternative:

https://github.com/sonatype/plexus-cipher

Otherwise, LGTM


Björn





reply via email to

[Prev in Thread] Current Thread [Next in Thread]