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.
This commit is contained in:
Ludovic Courtès 2014-04-06 21:11:09 +02:00
parent 1660514094
commit 0ec6237b2e
1 changed files with 1 additions and 1 deletions

View File

@ -117,7 +117,7 @@ SYSTEM."
(define (qemu-jobs store system) (define (qemu-jobs store system)
"Return a list of jobs that build QEMU images for SYSTEM." "Return a list of jobs that build QEMU images for SYSTEM."
(define (->alist drv) (define (->alist drv)
`((derivation . ,drv) `((derivation . ,(derivation-file-name drv))
(description . "Stand-alone QEMU image of the GNU system") (description . "Stand-alone QEMU image of the GNU system")
(long-description . "This is a demo stand-alone QEMU image of the GNU (long-description . "This is a demo stand-alone QEMU image of the GNU
system.") system.")