guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/10: hydra: Add Graphviz and help2man as inputs to the Guix job set.


From: Ludovic Courtès
Subject: 01/10: hydra: Add Graphviz and help2man as inputs to the Guix job set.
Date: Wed, 14 Oct 2015 19:46:06 +0000

civodul pushed a commit to branch master
in repository guix.

commit a6785b96ff8e7bf1ddffdda146955c1e5d416e35
Author: Ludovic Courtès <address@hidden>
Date:   Wed Oct 14 14:48:17 2015 +0200

    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.
---
 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 1035f81..a6f7923 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."



reply via email to

[Prev in Thread] Current Thread [Next in Thread]