aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorOphestra <cat@gensokyo.uk>2026-04-28 18:31:44 +0900
committerOphestra <cat@gensokyo.uk>2026-04-28 18:31:44 +0900
commit520d95bc07edf899b3b6c4a35a892947ba84c4d5 (patch)
treef6895d976115234dd0c1685deeadcad07f1b3877
parent451df3f4e7d09ae4587ae3a1309f66e50a065104 (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>
-rw-r--r--internal/rosa/libxslt.go7
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",