mirror of
https://github.com/truenas/scale-build.git
synced 2026-02-23 03:05:41 +00:00
11 lines
228 B
Python
11 lines
228 B
Python
from scale_build.packages.package import Package
|
|
|
|
from .manifest import get_manifest
|
|
|
|
|
|
def get_packages():
|
|
return [
|
|
pkg for pkg in map(lambda p: Package(**p), get_manifest()['sources'])
|
|
if pkg.to_build
|
|
]
|