summaryrefslogtreecommitdiff
path: root/build-aux
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2014-11-13 14:21:09 +0100
committerLudovic Courtès <ludo@gnu.org>2014-11-13 14:21:09 +0100
commit9de1defe790d8baa6a230b2d02e7ba023783b022 (patch)
tree4929e0d6b5aaeafb9bcf84a5ea6cbce8153f9da0 /build-aux
parentdb719df769f3e51728479129a592146a86cf7867 (diff)
downloadguix-9de1defe790d8baa6a230b2d02e7ba023783b022.tar.gz
guix-9de1defe790d8baa6a230b2d02e7ba023783b022.tar.xz
hydra: Build only non-grafted variants of the packages.
* build-aux/hydra/gnu-system.scm (package->alist): Pass #:graft? #f to PACKAGE-DERIVATION.
Diffstat (limited to 'build-aux')
-rw-r--r--build-aux/hydra/gnu-system.scm3
1 files changed, 2 insertions, 1 deletions
diff --git a/build-aux/hydra/gnu-system.scm b/build-aux/hydra/gnu-system.scm
index 6bcfbf5dc3..06a8048f32 100644
--- a/build-aux/hydra/gnu-system.scm
+++ b/build-aux/hydra/gnu-system.scm
@@ -70,7 +70,8 @@
#:optional (package-derivation package-derivation))
"Convert PACKAGE to an alist suitable for Hydra."
`((derivation . ,(derivation-file-name
- (package-derivation store package system)))
+ (package-derivation store package system
+ #:graft? #f)))
(description . ,(package-synopsis package))
(long-description . ,(package-description package))
(license . ,(package-license package))