hydra: Add Graphviz as an input to the "tarball" job.
* build-aux/hydra/guix.scm (tarball-package): Add GRAPHVIZ to `native-inputs'.
This commit is contained in:
parent
7eed1d0438
commit
0280ef2203
|
@ -43,6 +43,7 @@
|
||||||
(guix build-system gnu)
|
(guix build-system gnu)
|
||||||
(gnu packages version-control)
|
(gnu packages version-control)
|
||||||
(gnu packages package-management)
|
(gnu packages package-management)
|
||||||
|
(gnu packages graphviz)
|
||||||
(srfi srfi-1)
|
(srfi srfi-1)
|
||||||
(srfi srfi-26)
|
(srfi srfi-26)
|
||||||
(ice-9 match))
|
(ice-9 match))
|
||||||
|
@ -79,6 +80,7 @@ containing a Git checkout of Guix."
|
||||||
(("git ") "true git ")))
|
(("git ") "true git ")))
|
||||||
,p))))
|
,p))))
|
||||||
(native-inputs `(("git" ,git)
|
(native-inputs `(("git" ,git)
|
||||||
|
("graphviz" ,graphviz)
|
||||||
,@(package-native-inputs dist))))))
|
,@(package-native-inputs dist))))))
|
||||||
|
|
||||||
(define (hydra-jobs store arguments)
|
(define (hydra-jobs store arguments)
|
||||||
|
|
Loading…
Reference in New Issue