me
/
guix
Archived
1
0
Fork 0

gnu: guix: Add dependency on Disarchive.

This enables the Disarchive fallback implemented in commit
fbc2a52a32.

* gnu/packages/package-management.scm (guix)[inputs]: Add DISARCHIVE.
[arguments]: In 'wrap-program' phase, add DISARCHIVE to the search path.
master
Ludovic Courtès 2021-05-14 22:50:53 +02:00
parent e4beaa7c8a
commit 0b1f70d1a7
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 5 additions and 1 deletions

View File

@ -312,9 +312,11 @@ $(prefix)/etc/openrc\n")))
"guile-bytestructures"))
(ssh (assoc-ref inputs "guile-ssh"))
(gnutls (assoc-ref inputs "gnutls"))
(disarchive (assoc-ref inputs "disarchive"))
(locales (assoc-ref inputs "glibc-utf8-locales"))
(deps (list gcrypt json sqlite gnutls git
bs ssh zlib lzlib zstd guile-lib))
bs ssh zlib lzlib zstd guile-lib
disarchive))
(deps* (if avahi (cons avahi deps) deps))
(effective
(read-line
@ -416,6 +418,8 @@ $(prefix)/etc/openrc\n")))
("bootstrap/tar" ,(bootstrap-executable "tar" (%current-system)))
("bootstrap/xz" ,(bootstrap-executable "xz" (%current-system)))
("disarchive" ,disarchive) ;for 'guix perform-download'
("glibc-utf8-locales" ,glibc-utf8-locales)))
(propagated-inputs
`(("gnutls" ,gnutls)