summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2015-10-14 14:48:17 +0200
committerLudovic Courtès <ludo@gnu.org>2015-10-14 21:39:05 +0200
commita6785b96ff8e7bf1ddffdda146955c1e5d416e35 (patch)
treea5f7cf12f3961c525503fa2fbccd710e52705d29
parentd9c44e9c6afe145ef274286c0ac47a8592f0790d (diff)
hydra: Add Graphviz and help2man as inputs to the Guix job set.
* build-aux/hydra/guix.scm (tarball-package): Add GRAPHVIZ and HELP2MAN to 'native-inputs' of GUIX.
-rw-r--r--build-aux/hydra/guix.scm8
1 files changed, 7 insertions, 1 deletions
diff --git a/build-aux/hydra/guix.scm b/build-aux/hydra/guix.scm
index 1035f81b4af..a6f7923fb8f 100644
--- a/build-aux/hydra/guix.scm
+++ b/build-aux/hydra/guix.scm
@@ -48,6 +48,7 @@
48 (gnu packages version-control) 48 (gnu packages version-control)
49 (gnu packages package-management) 49 (gnu packages package-management)
50 (gnu packages graphviz) 50 (gnu packages graphviz)
51 (gnu packages man)
51 (srfi srfi-1) 52 (srfi srfi-1)
52 (srfi srfi-26) 53 (srfi srfi-26)
53 (ice-9 match)) 54 (ice-9 match))
@@ -71,7 +72,12 @@
71(define (tarball-package checkout) 72(define (tarball-package checkout)
72 "Return a package that does `make distcheck' from CHECKOUT, a directory 73 "Return a package that does `make distcheck' from CHECKOUT, a directory
73containing a Git checkout of Guix." 74containing a Git checkout of Guix."
74 (dist-package guix checkout)) 75 (dist-package (package
76 (inherit guix)
77 (native-inputs `(("graphviz" ,graphviz)
78 ("help2man" ,help2man)
79 ,@(package-native-inputs guix))))
80 checkout))
75 81
76(define (hydra-jobs store arguments) 82(define (hydra-jobs store arguments)
77 "Return Hydra jobs." 83 "Return Hydra jobs."