summaryrefslogtreecommitdiff
path: root/build-aux/hydra/guix.scm
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2013-09-03 22:07:21 +0200
committerLudovic Courtès <ludo@gnu.org>2013-09-03 22:07:21 +0200
commit7eed1d0438cee90181a4f0bb712aaa4b1087eea0 (patch)
tree9a421d5429db91edea99566b50186deb8ed1205a /build-aux/hydra/guix.scm
parentbda44eed939ae251a21ad3cd1337c58e8d349581 (diff)
downloadpatches-7eed1d0438cee90181a4f0bb712aaa4b1087eea0.tar
patches-7eed1d0438cee90181a4f0bb712aaa4b1087eea0.tar.gz
hydra: Add Git as an input to the "tarball" job.
* build-aux/hydra/guix.scm (tarball-package): Add `native-inputs' field.
Diffstat (limited to 'build-aux/hydra/guix.scm')
-rw-r--r--build-aux/hydra/guix.scm5
1 files changed, 4 insertions, 1 deletions
diff --git a/build-aux/hydra/guix.scm b/build-aux/hydra/guix.scm
index 29a19c62e5..f1d41f22fc 100644
--- a/build-aux/hydra/guix.scm
+++ b/build-aux/hydra/guix.scm
@@ -41,6 +41,7 @@
(guix packages)
(guix utils)
(guix build-system gnu)
+ (gnu packages version-control)
(gnu packages package-management)
(srfi srfi-1)
(srfi srfi-26)
@@ -76,7 +77,9 @@ containing a Git checkout of Guix."
;; us with a checkout that includes sub-modules.
(substitute* "bootstrap"
(("git ") "true git ")))
- ,p)))))))
+ ,p))))
+ (native-inputs `(("git" ,git)
+ ,@(package-native-inputs dist))))))
(define (hydra-jobs store arguments)
"Return Hydra jobs."