summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2014-04-06 21:11:09 +0200
committerLudovic Courtès <ludo@gnu.org>2014-04-06 21:18:13 +0200
commit0ec6237b2ec48b2acd506788d6c1b734f27896e5 (patch)
treee578f916934b42fe1ec2d30f2ffd3b432819ee85
parent16605140947daf1f9016b1abc1e5c63ab241b38d (diff)
downloadguix-patches-0ec6237b2ec48b2acd506788d6c1b734f27896e5.tar
guix-patches-0ec6237b2ec48b2acd506788d6c1b734f27896e5.tar.gz
hydra: qemu-jobs: Return a derivation file name, not a derivation.
* build-aux/hydra/gnu-system.scm (qemu-jobs)[->alist]: Return the derivation file name, not the derivation.
-rw-r--r--build-aux/hydra/gnu-system.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/build-aux/hydra/gnu-system.scm b/build-aux/hydra/gnu-system.scm
index 67794ff6e6..44191fa24a 100644
--- a/build-aux/hydra/gnu-system.scm
+++ b/build-aux/hydra/gnu-system.scm
@@ -117,7 +117,7 @@ SYSTEM."
(define (qemu-jobs store system)
"Return a list of jobs that build QEMU images for SYSTEM."
(define (->alist drv)
- `((derivation . ,drv)
+ `((derivation . ,(derivation-file-name drv))
(description . "Stand-alone QEMU image of the GNU system")
(long-description . "This is a demo stand-alone QEMU image of the GNU
system.")