ci: Ignore package license.
Fixes: <https://issues.guix.gnu.org/44370>. * gnu/ci.scm (package->alist): Ignore package license.master
parent
48b00a4c7e
commit
7c02eb6c8d
11
gnu/ci.scm
11
gnu/ci.scm
|
@ -89,16 +89,7 @@
|
||||||
(system . ,(derivation-system drv))
|
(system . ,(derivation-system drv))
|
||||||
(description . ,(package-synopsis package))
|
(description . ,(package-synopsis package))
|
||||||
(long-description . ,(package-description package))
|
(long-description . ,(package-description package))
|
||||||
|
(license . ,(package-license package))
|
||||||
;; XXX: Hydra ignores licenses that are not a <license> structure or a
|
|
||||||
;; list thereof.
|
|
||||||
(license . ,(let loop ((license (package-license package)))
|
|
||||||
(match license
|
|
||||||
((? license?)
|
|
||||||
(license-name license))
|
|
||||||
((lst ...)
|
|
||||||
(map loop license)))))
|
|
||||||
|
|
||||||
(home-page . ,(package-home-page package))
|
(home-page . ,(package-home-page package))
|
||||||
(maintainers . ("bug-guix@gnu.org"))
|
(maintainers . ("bug-guix@gnu.org"))
|
||||||
(max-silent-time . ,(or (assoc-ref (package-properties package)
|
(max-silent-time . ,(or (assoc-ref (package-properties package)
|
||||||
|
|
Reference in New Issue