diff options
author | Ludovic Courtès <ludo@gnu.org> | 2013-09-03 22:21:48 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2013-09-03 22:21:48 +0200 |
commit | 0280ef22034dff86d8d0fa7eb83c72134643b8f5 (patch) | |
tree | d12447e91b6ca8142f43d80c8451c30be78bf0c2 /build-aux/hydra | |
parent | 7eed1d0438cee90181a4f0bb712aaa4b1087eea0 (diff) | |
download | guix-0280ef22034dff86d8d0fa7eb83c72134643b8f5.tar 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')
-rw-r--r-- | build-aux/hydra/guix.scm | 2 |
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) |