gnu: innoextract: Update to 1.9.

* gnu/packages/compression.scm (innoextract): Update to 1.9.
[source]: Download from official home page.
[arguments]: Remove obsolete configure flag.
This commit is contained in:
Tobias Geerinckx-Rice 2020-08-11 15:53:39 +02:00
parent 2d25c635f2
commit 73996c0250
No known key found for this signature in database
GPG key ID: 0DB0FF884F556D79

View file

@ -1807,20 +1807,18 @@ (define-public plzip
(define-public innoextract
(package
(name "innoextract")
(version "1.8")
(version "1.9")
(source
(origin
(method url-fetch)
(uri (string-append "https://github.com/dscharrer/innoextract/releases"
"/download/" version
(uri (string-append "https://constexpr.org/innoextract/files/"
"innoextract-" version "/"
"/innoextract-" version ".tar.gz"))
(sha256
(base32
"0saj50n8ds85shygy4mq1h6s99510r9wgjjdll4dmvhra4lzcy2y"))))
(base32 "09l1z1nbl6ijqqwszdwch9mqr54qb7df0wp2sd77v17dq6gsci33"))))
(build-system cmake-build-system)
(arguments
`(#:tests? #f
#:configure-flags '("-DBoost_NO_BOOST_CMAKE=ON")))
`(#:tests? #f))
(inputs `(("boost" ,boost)
("libiconv" ,libiconv)
("xz" ,xz)))