diff options
| author | Ophestra <cat@gensokyo.uk> | 2026-03-08 02:36:09 +0900 |
|---|---|---|
| committer | Ophestra <cat@gensokyo.uk> | 2026-03-08 02:36:09 +0900 |
| commit | 8c64812b34046864d3dff885037f55788c471148 (patch) | |
| tree | 9ebefa72f9747f375ac1ba59a6bad12dce916fff /internal/rosa/python.go | |
| parent | d1423d980d13649482299fdd9fe29cc64bc69cc3 (diff) | |
internal/rosa: add zlib runtime dependency
For transitioning to dynamically linking zlib.
Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'internal/rosa/python.go')
| -rw-r--r-- | internal/rosa/python.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/internal/rosa/python.go b/internal/rosa/python.go index 937a5085..631fe13a 100644 --- a/internal/rosa/python.go +++ b/internal/rosa/python.go @@ -87,6 +87,7 @@ func newViaPip( } return t.New(name+"-"+version, 0, slices.Concat([]pkg.Artifact{ + t.Load(Zlib), t.Load(Python), }, extraRes), nil, nil, ` pip3 install \ @@ -112,6 +113,7 @@ func (t Toolchain) newSetuptools() (pkg.Artifact, string) { checksum = "K9f8Yi7Gg95zjmQsE1LLw9UBb8NglI6EY6pQpdD6DM0Pmc_Td5w2qs1SMngTI6Jp" ) return t.New("setuptools-"+version, 0, []pkg.Artifact{ + t.Load(Zlib), t.Load(Python), }, nil, nil, ` pip3 install \ |
