guix-devel
[Top][All Lists]
Advanced

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

Re: [PATCH] gnu: Add fastjar


From: Ricardo Wurmus
Subject: Re: [PATCH] gnu: Add fastjar
Date: Mon, 22 Dec 2014 18:19:07 +0100

Ricardo Wurmus writes:

> * gnu/packages/compression.scm (fastjar): New variable.
> ---
>  gnu/packages/compression.scm | 20 ++++++++++++++++++++
>  1 file changed, 20 insertions(+)
>
> diff --git a/gnu/packages/compression.scm b/gnu/packages/compression.scm
> index 7c22300..b768326 100644
> --- a/gnu/packages/compression.scm
> +++ b/gnu/packages/compression.scm
> @@ -70,6 +70,26 @@ independent of the input data and can be reduced, if 
> necessary, at some cost
>  in compression.")
>      (license license:zlib)))
>  
> +(define-public fastjar
> +  (package
> +   (name "fastjar")
> +   (version "0.98")
> +   (source (origin
> +             (method url-fetch)
> +             (uri (string-append "mirror://savannah/fastjar/fastjar-"
> +                                 version ".tar.gz"))
> +             (sha256
> +              (base32
> +               "0iginbz2m15hcsa3x4y7v3mhk54gr1r7m3ghx0pg4n46vv2snmpi"))))
> +   (build-system gnu-build-system)
> +   (inputs `(("zlib" ,zlib)))
> +   (home-page "http://savannah.nongnu.org/projects/fastjar";)
> +   (synopsis "Replacement for Sun's 'jar' utility")
> +   (description
> +    "FastJar is an attempt to create a much faster replacement for Sun's 
> 'jar'
> +utility. Instead of being written in Java, FastJar is written in C.")

-----------^

This should be a double space.


> +   (license license:gpl2+)))
> +
>  (define-public gzip
>    (package
>     (name "gzip")


Attached is a new patch.

Attachment: 0001-gnu-Add-fastjar.patch
Description: Text Data


reply via email to

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