diff options
| author | Ophestra <cat@gensokyo.uk> | 2026-04-28 18:31:44 +0900 |
|---|---|---|
| committer | Ophestra <cat@gensokyo.uk> | 2026-04-28 18:31:44 +0900 |
| commit | 520d95bc07edf899b3b6c4a35a892947ba84c4d5 (patch) | |
| tree | f6895d976115234dd0c1685deeadcad07f1b3877 /internal | |
| parent | 451df3f4e7d09ae4587ae3a1309f66e50a065104 (diff) | |
internal/rosa/libxslt: fetch source tarball
This does not have submodules, so the overhead of git is unnecessary.
Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'internal')
| -rw-r--r-- | internal/rosa/libxslt.go | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/internal/rosa/libxslt.go b/internal/rosa/libxslt.go index f7e6812c..0fec4081 100644 --- a/internal/rosa/libxslt.go +++ b/internal/rosa/libxslt.go @@ -5,10 +5,11 @@ import "hakurei.app/internal/pkg" func (t Toolchain) newLibxslt() (pkg.Artifact, string) { const ( version = "1.1.45" - checksum = "MZc_dyUWpHChkWDKa5iycrECxBsRd4ZMbYfL4VojTbung593mlH2tHGmxYB6NFYT" + checksum = "67ks7v8od2oWaEGf23Sst_Xbn_8brQyolQjqxPoO-lK35k_WJhi2Px5JJgbk-nfn" ) - return t.NewPackage("libxslt", version, t.newTagRemote( - "https://gitlab.gnome.org/GNOME/libxslt.git", + return t.NewPackage("libxslt", version, newFromGitLab( + "gitlab.gnome.org", + "GNOME/libxslt", "v"+version, checksum, ), nil, &MakeHelper{ Generate: "NOCONFIGURE=1 ./autogen.sh", |
