bump gomuks

This commit is contained in:
Henry Hiles 2026-06-18 14:44:56 -04:00
commit 1af957d4a1
Signed by: Henry-Hiles
SSH key fingerprint: SHA256:VKQUdS31Q90KvX7EkKMHMBpUspcmItAh86a+v7PGiIs
3 changed files with 7 additions and 3 deletions

2
gomuks

@ -1 +1 @@
Subproject commit da3b823e1435afd6f2a1ea6c354d9a35c489b624 Subproject commit 819f5d69f068ddedb08fe732f50570e33dd19e0f

View file

@ -55,7 +55,11 @@ Future<void> main(List<String> args) => build(args, (input, output) async {
libFile = buildDir.resolve("${targetArch.name}/$libFileName"); libFile = buildDir.resolve("${targetArch.name}/$libFileName");
// goheif/dav1d supported on Android would need to fix upstream // goheif/dav1d supported on Android would need to fix upstream
final tags = targetOS == OS.android ? "goolm,noheic" : "goolm"; final tags = [
"sqlite_fts5",
"goolm",
if (targetOS == OS.android) "noheic",
].join(",");
print( print(
"Building Gomuks shared library $libFileName (${targetOS.name}/${targetArch.name}) to ${libFile.path}...", "Building Gomuks shared library $libFileName (${targetOS.name}/${targetArch.name}) to ${libFile.path}...",
); );

View file

@ -16,7 +16,7 @@ buildGoModule (finalAttrs: {
buildPhase = '' buildPhase = ''
runHook preBuild runHook preBuild
go build -buildmode=c-shared -o libgomuks.so -tags goolm,noheic ./pkg/ffi go build -buildmode=c-shared -o libgomuks.so -tags goolm,noheic,sqlite_fts5 ./pkg/ffi
runHook postBuild runHook postBuild
''; '';