hydra: Return the .drv file names, not the <derivation> objects.
* build-aux/hydra/gnu-system.scm (package->alist): Call 'derivation-file-name' on the result of 'package-derivation'. * build-aux/hydra/guix.scm (package->alist): Likewise.master
parent
37c0ce3d27
commit
3301f17970
|
@ -58,7 +58,8 @@
|
||||||
(define* (package->alist store package system
|
(define* (package->alist store package system
|
||||||
#:optional (package-derivation package-derivation))
|
#:optional (package-derivation package-derivation))
|
||||||
"Convert PACKAGE to an alist suitable for Hydra."
|
"Convert PACKAGE to an alist suitable for Hydra."
|
||||||
`((derivation . ,(package-derivation store package system))
|
`((derivation . ,(derivation-file-name
|
||||||
|
(package-derivation store package system)))
|
||||||
(description . ,(package-synopsis package))
|
(description . ,(package-synopsis package))
|
||||||
(long-description . ,(package-description package))
|
(long-description . ,(package-description package))
|
||||||
(license . ,(package-license package))
|
(license . ,(package-license package))
|
||||||
|
|
|
@ -56,7 +56,8 @@
|
||||||
(define* (package->alist store package system
|
(define* (package->alist store package system
|
||||||
#:optional (package-derivation package-derivation))
|
#:optional (package-derivation package-derivation))
|
||||||
"Convert PACKAGE to an alist suitable for Hydra."
|
"Convert PACKAGE to an alist suitable for Hydra."
|
||||||
`((derivation . ,(package-derivation store package system))
|
`((derivation . ,(derivation-file-name
|
||||||
|
(package-derivation store package system)))
|
||||||
(description . ,(package-synopsis package))
|
(description . ,(package-synopsis package))
|
||||||
(long-description . ,(package-description package))
|
(long-description . ,(package-description package))
|
||||||
(license . ,(package-license package))
|
(license . ,(package-license package))
|
||||||
|
|
Reference in New Issue