mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
packages: Add 'package-transitive-supported-systems'.
* guix/packages.scm (package-transitive-supported-systems): New procedure. * tests/packages.scm ("package-transitive-supported-systems"): New test. * build-aux/hydra/gnu-system.scm (package->job): Use it.
This commit is contained in:
parent
67a86d3b8d
commit
7c3c0374de
3 changed files with 27 additions and 1 deletions
|
@ -172,7 +172,8 @@ system.")
|
|||
valid."
|
||||
(cond ((member package base-packages)
|
||||
#f)
|
||||
((member system (package-supported-systems package))
|
||||
((member system
|
||||
(package-transitive-supported-systems package))
|
||||
(package-job store (job-name package) package system))
|
||||
(else
|
||||
#f)))))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue