gnu: disarchive: Update to 0.4.0.
* gnu/packages/backup.scm (disarchive)[source]: Update to 0.4.0. [native-inputs, inputs]: Add guile-lzma. * gnu/packages/package-management.scm (guix)[arguments]: Include guile-lzma in the 'wrap-program' phase. [inputs]: Add guile-lzma.
This commit is contained in:
parent
eaa7ead41c
commit
35ce3e5de6
@ -1109,14 +1109,14 @@ backup.")
|
||||
(define-public disarchive
|
||||
(package
|
||||
(name "disarchive")
|
||||
(version "0.3.0")
|
||||
(version "0.4.0")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "https://files.ngyro.com/disarchive/"
|
||||
"disarchive-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"0jgc53rrbas8i4z13l2ii99cpav1ma73spsjg70ygihf0635r3dh"))))
|
||||
"1pql8cspsxyx8cpw3xyhirnisv6rb4vj5mxr1d7w9la72q740n8s"))))
|
||||
(build-system gnu-build-system)
|
||||
(native-inputs
|
||||
(list autoconf
|
||||
@ -1124,11 +1124,12 @@ backup.")
|
||||
pkg-config
|
||||
guile-3.0 ;for cross-compilation
|
||||
guile-gcrypt
|
||||
guile-lzma
|
||||
guile-quickcheck))
|
||||
(inputs
|
||||
(list guile-3.0 zlib))
|
||||
(propagated-inputs
|
||||
(list guile-gcrypt))
|
||||
(list guile-gcrypt guile-lzma))
|
||||
(home-page "https://ngyro.com/software/disarchive.html")
|
||||
(synopsis "Software archive disassembler")
|
||||
(description "Disarchive can disassemble software archives into data
|
||||
|
@ -328,10 +328,11 @@ $(prefix)/etc/openrc\n")))
|
||||
(ssh (assoc-ref inputs "guile-ssh"))
|
||||
(gnutls (assoc-ref inputs "gnutls"))
|
||||
(disarchive (assoc-ref inputs "disarchive"))
|
||||
(lzma (assoc-ref inputs "guile-lzma"))
|
||||
(locales (assoc-ref inputs "glibc-utf8-locales"))
|
||||
(deps (list gcrypt json sqlite gnutls git
|
||||
bs ssh zlib lzlib zstd guile-lib
|
||||
disarchive))
|
||||
disarchive lzma))
|
||||
(deps* (if avahi (cons avahi deps) deps))
|
||||
(effective
|
||||
(read-line
|
||||
@ -434,6 +435,7 @@ $(prefix)/etc/openrc\n")))
|
||||
("bootstrap/xz" ,(bootstrap-executable "xz" (%current-system)))
|
||||
|
||||
("disarchive" ,disarchive) ;for 'guix perform-download'
|
||||
("guile-lzma" ,guile-lzma) ;for Disarchive
|
||||
|
||||
("glibc-utf8-locales" ,glibc-utf8-locales)))
|
||||
(propagated-inputs
|
||||
|
Loading…
Reference in New Issue
Block a user