diff options
| author | Ophestra <cat@gensokyo.uk> | 2026-04-28 18:31:28 +0900 |
|---|---|---|
| committer | Ophestra <cat@gensokyo.uk> | 2026-04-28 18:31:28 +0900 |
| commit | 451df3f4e7d09ae4587ae3a1309f66e50a065104 (patch) | |
| tree | 00fb883f98a5a4ba39e3851fe185e000269b43ae | |
| parent | 011fac15ed6e31ae7dc872a993cbffb386159317 (diff) | |
internal/rosa/libxml2: fetch source tarball
This does not have submodules, so the overhead of git is unnecessary.
Signed-off-by: Ophestra <cat@gensokyo.uk>
| -rw-r--r-- | internal/rosa/libxml2.go | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/internal/rosa/libxml2.go b/internal/rosa/libxml2.go index a5f5e3c2..aebc9896 100644 --- a/internal/rosa/libxml2.go +++ b/internal/rosa/libxml2.go @@ -5,10 +5,11 @@ import "hakurei.app/internal/pkg" func (t Toolchain) newLibxml2() (pkg.Artifact, string) { const ( version = "2.15.3" - checksum = "oWkNe53c3d4Lt4OzrXPHBcOLHJ3TWqpa0x7B7bh_DyZ-uIMiplpdZjQRgRWVal2h" + checksum = "oJy74htGlEpf70KPvpW18fYJo0RQQkCXZRwqUz6NoXborS3HCq3Nm4gsyaSeNmUH" ) - return t.NewPackage("libxml2", version, t.newTagRemote( - "https://gitlab.gnome.org/GNOME/libxml2.git", + return t.NewPackage("libxml2", version, newFromGitLab( + "gitlab.gnome.org", + "GNOME/libxml2", "v"+version, checksum, ), &PackageAttr{ // can't create shell.out: Read-only file system |
