mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
svn-download: Add dependency on tar+gzip for SWH retrieval.
Fixes a bug whereby ‘swh-download-directory-by-nar-hash’ would fail due to ‘tar’ not being found in $PATH: $ GUIX_DOWNLOAD_METHODS=swh guix build -S texlive-geometry --check In execvp of tar: No such file or directory SWH: found directory with nar-sha256 hash 217e1c8d33aa6fd063f205453a946509b059b85fa7e8d32b7e80054d5e6e5c26 at 'swh:1:dir:ccb56476fb36b2ba0298e57f2b2e69c735ac0a2f' […] * guix/svn-download.scm (svn-fetch)[tar+gzip]: New variable. [build]: Use it. (svn-multi-fetch): Likewise. Change-Id: I37ba9824a5feb6d38f85743519cbd2b2c3e1a9e8
This commit is contained in:
parent
e2ba58a67f
commit
5d2d081af0
1 changed files with 21 additions and 0 deletions
|
@ -90,6 +90,12 @@ (define guile-lzlib
|
|||
(define guile-gnutls
|
||||
(module-ref (resolve-interface '(gnu packages tls)) 'guile-gnutls))
|
||||
|
||||
(define tar+gzip ;for (guix swh)
|
||||
(list (module-ref (resolve-interface '(gnu packages compression))
|
||||
'gzip)
|
||||
(module-ref (resolve-interface '(gnu packages base))
|
||||
'tar)))
|
||||
|
||||
(define build
|
||||
(with-imported-modules
|
||||
(source-module-closure '((guix build svn)
|
||||
|
@ -104,9 +110,14 @@ (define build
|
|||
((guix build download)
|
||||
#:select (download-method-enabled?))
|
||||
(guix build download-nar)
|
||||
(guix build utils)
|
||||
(guix swh)
|
||||
(ice-9 match))
|
||||
|
||||
;; Add tar and gzip to $PATH so
|
||||
;; 'swh-download-directory-by-nar-hash' can invoke them.
|
||||
(set-path-environment-variable "PATH" '("bin") '(#+@tar+gzip))
|
||||
|
||||
(or (and (download-method-enabled? 'upstream)
|
||||
(svn-fetch (getenv "svn url")
|
||||
(string->number (getenv "svn revision"))
|
||||
|
@ -185,6 +196,12 @@ (define guile-lzlib
|
|||
(define guile-gnutls
|
||||
(module-ref (resolve-interface '(gnu packages tls)) 'guile-gnutls))
|
||||
|
||||
(define tar+gzip ;for (guix swh)
|
||||
(list (module-ref (resolve-interface '(gnu packages compression))
|
||||
'gzip)
|
||||
(module-ref (resolve-interface '(gnu packages base))
|
||||
'tar)))
|
||||
|
||||
(define build
|
||||
(with-imported-modules
|
||||
(source-module-closure '((guix build svn)
|
||||
|
@ -204,6 +221,10 @@ (define build
|
|||
(srfi srfi-1)
|
||||
(ice-9 match))
|
||||
|
||||
;; Add tar and gzip to $PATH so
|
||||
;; 'swh-download-directory-by-nar-hash' can invoke them.
|
||||
(set-path-environment-variable "PATH" '("bin") '(#+@tar+gzip))
|
||||
|
||||
(or (every
|
||||
(lambda (location)
|
||||
;; The directory must exist if we are to fetch only a
|
||||
|
|
Loading…
Reference in a new issue