Merge remote-tracking branch 'origin/master' into core-updates

This commit is contained in:
Efraim Flashner 2017-03-13 23:08:49 +02:00
commit 3f9543aee1
No known key found for this signature in database
GPG key ID: F4C1D3917EACEE93
54 changed files with 2261 additions and 442 deletions

View file

@ -97,6 +97,33 @@ independent of the input data and can be reduced, if necessary, at some cost
in compression.")
(license license:zlib)))
(define-public minizip
(package
(name "minizip")
(version (package-version zlib))
(source (package-source zlib))
(build-system gnu-build-system)
(arguments
`(#:phases
(modify-phases %standard-phases
(add-after 'unpack 'enter-source
(lambda _ (chdir "contrib/minizip") #t))
(add-before 'configure 'autoreconf
(lambda _
(zero? (system* "autoreconf" "-vif")))))))
(native-inputs
`(("autoconf" ,autoconf)
("automake" ,automake)
("libtool" ,libtool)))
(propagated-inputs `(("zlib" ,zlib)))
(home-page (package-home-page zlib))
(synopsis "Zip Compression library")
(description
"Minizip is a minimalistic library that supports compressing,
extracting and viewing ZIP archives. This version is extracted from
the @code{zlib} source.")
(license (package-license zlib))))
(define-public fastjar
(package
(name "fastjar")