diff options
author | Mark H Weaver <mhw@netris.org> | 2015-10-17 19:08:53 -0400 |
---|---|---|
committer | Mark H Weaver <mhw@netris.org> | 2015-10-17 19:08:53 -0400 |
commit | ccb522324bd99cc379ada4a1da5b8bcfd7d12c5b (patch) | |
tree | bd73bf8f8dabc046c12c53295b18daad49379887 /build-aux | |
parent | 5fba12ecd3146e17d826167b6b9ffdfcbe2a49c9 (diff) | |
parent | 9e2592a3466c72dbfb64494e1316ce8af1554647 (diff) | |
download | guix-ccb522324bd99cc379ada4a1da5b8bcfd7d12c5b.tar guix-ccb522324bd99cc379ada4a1da5b8bcfd7d12c5b.tar.gz |
Merge branch 'master' into dbus-update
Diffstat (limited to 'build-aux')
-rw-r--r-- | build-aux/hydra/guix.scm | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/build-aux/hydra/guix.scm b/build-aux/hydra/guix.scm index 1035f81b4a..a6f7923fb8 100644 --- a/build-aux/hydra/guix.scm +++ b/build-aux/hydra/guix.scm @@ -48,6 +48,7 @@ (gnu packages version-control) (gnu packages package-management) (gnu packages graphviz) + (gnu packages man) (srfi srfi-1) (srfi srfi-26) (ice-9 match)) @@ -71,7 +72,12 @@ (define (tarball-package checkout) "Return a package that does `make distcheck' from CHECKOUT, a directory 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) "Return Hydra jobs." |