summaryrefslogtreecommitdiff
path: root/build-aux/hydra/guix.scm
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2013-09-03 22:21:48 +0200
committerLudovic Courtès <ludo@gnu.org>2013-09-03 22:21:48 +0200
commit0280ef22034dff86d8d0fa7eb83c72134643b8f5 (patch)
treed12447e91b6ca8142f43d80c8451c30be78bf0c2 /build-aux/hydra/guix.scm
parent7eed1d0438cee90181a4f0bb712aaa4b1087eea0 (diff)
downloadgnu-guix-0280ef22034dff86d8d0fa7eb83c72134643b8f5.tar
gnu-guix-0280ef22034dff86d8d0fa7eb83c72134643b8f5.tar.gz
hydra: Add Graphviz as an input to the "tarball" job.
* build-aux/hydra/guix.scm (tarball-package): Add GRAPHVIZ to `native-inputs'.
Diffstat (limited to 'build-aux/hydra/guix.scm')
-rw-r--r--build-aux/hydra/guix.scm2
1 files changed, 2 insertions, 0 deletions
diff --git a/build-aux/hydra/guix.scm b/build-aux/hydra/guix.scm
index f1d41f22fc..dbc935d897 100644
--- a/build-aux/hydra/guix.scm
+++ b/build-aux/hydra/guix.scm
@@ -43,6 +43,7 @@
(guix build-system gnu)
(gnu packages version-control)
(gnu packages package-management)
+ (gnu packages graphviz)
(srfi srfi-1)
(srfi srfi-26)
(ice-9 match))
@@ -79,6 +80,7 @@ containing a Git checkout of Guix."
(("git ") "true git ")))
,p))))
(native-inputs `(("git" ,git)
+ ("graphviz" ,graphviz)
,@(package-native-inputs dist))))))
(define (hydra-jobs store arguments)