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.
This commit is contained in:
Ludovic Courtès 2015-10-14 14:48:17 +02:00
parent d9c44e9c6a
commit a6785b96ff
1 changed files with 7 additions and 1 deletions

View File

@ -48,6 +48,7 @@
(gnu packages version-control) (gnu packages version-control)
(gnu packages package-management) (gnu packages package-management)
(gnu packages graphviz) (gnu packages graphviz)
(gnu packages man)
(srfi srfi-1) (srfi srfi-1)
(srfi srfi-26) (srfi srfi-26)
(ice-9 match)) (ice-9 match))
@ -71,7 +72,12 @@
(define (tarball-package checkout) (define (tarball-package checkout)
"Return a package that does `make distcheck' from CHECKOUT, a directory "Return a package that does `make distcheck' from CHECKOUT, a directory
containing a Git checkout of Guix." containing a Git checkout of Guix."
(dist-package guix checkout)) (dist-package (package
(inherit guix)
(native-inputs `(("graphviz" ,graphviz)
("help2man" ,help2man)
,@(package-native-inputs guix))))
checkout))
(define (hydra-jobs store arguments) (define (hydra-jobs store arguments)
"Return Hydra jobs." "Return Hydra jobs."