hydra: Add Git as an input to the "tarball" job.
* build-aux/hydra/guix.scm (tarball-package): Add `native-inputs' field.
This commit is contained in:
parent
bda44eed93
commit
7eed1d0438
|
@ -41,6 +41,7 @@
|
||||||
(guix packages)
|
(guix packages)
|
||||||
(guix utils)
|
(guix utils)
|
||||||
(guix build-system gnu)
|
(guix build-system gnu)
|
||||||
|
(gnu packages version-control)
|
||||||
(gnu packages package-management)
|
(gnu packages package-management)
|
||||||
(srfi srfi-1)
|
(srfi srfi-1)
|
||||||
(srfi srfi-26)
|
(srfi srfi-26)
|
||||||
|
@ -76,7 +77,9 @@ containing a Git checkout of Guix."
|
||||||
;; us with a checkout that includes sub-modules.
|
;; us with a checkout that includes sub-modules.
|
||||||
(substitute* "bootstrap"
|
(substitute* "bootstrap"
|
||||||
(("git ") "true git ")))
|
(("git ") "true git ")))
|
||||||
,p)))))))
|
,p))))
|
||||||
|
(native-inputs `(("git" ,git)
|
||||||
|
,@(package-native-inputs dist))))))
|
||||||
|
|
||||||
(define (hydra-jobs store arguments)
|
(define (hydra-jobs store arguments)
|
||||||
"Return Hydra jobs."
|
"Return Hydra jobs."
|
||||||
|
|
Loading…
Reference in New Issue