mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
list-packages: Add Hydra links only for the supported systems.
* build-aux/list-packages.scm (package->sxml)[status]: Use 'package-transitive-supported-systems' instead of a hard-coded list of systems.
This commit is contained in:
parent
7491edafdb
commit
bc36105651
1 changed files with 2 additions and 3 deletions
|
@ -162,9 +162,8 @@ (define (url system)
|
||||||
,system))
|
,system))
|
||||||
|
|
||||||
`(div "status: "
|
`(div "status: "
|
||||||
,(url "x86_64-linux") " "
|
,(list-join (map url (package-transitive-supported-systems package))
|
||||||
,(url "i686-linux") " "
|
" ")))
|
||||||
,(url "mips64el-linux")))
|
|
||||||
|
|
||||||
(define (package-logo name)
|
(define (package-logo name)
|
||||||
(and=> (lookup-gnu-package name)
|
(and=> (lookup-gnu-package name)
|
||||||
|
|
Loading…
Reference in a new issue