etc: manifests: Limit all-packages to supported packages.

* etc/manifests/all-packages.scm: Filter by support-package?.
This commit is contained in:
Hilton Chain 2026-02-24 13:49:22 +08:00
parent eb6e174eb8
commit cdfbb9d864
No known key found for this signature in database
GPG Key ID: ACC66D09CA528292

View File

@ -1,7 +1,9 @@
;; SPDX-License-Identifier: CC0-1.0
;; Copyright © 2025 Hilton Chain <hako@ultrarare.space>
(use-modules (guix profiles)
(use-modules (guix packages)
(guix profiles)
(rosenthal utils packages))
(manifest (map package->manifest-entry (all-rosenthal-packages)))
(manifest (map package->manifest-entry
(filter supported-package? (all-rosenthal-packages))))