guix_mirror_bot pushed a commit to branch go-team
in repository guix.

commit e9946145ec05435f8c92a6021416854967925a8e
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Fri Mar 6 11:15:26 2026 +0000

    gnu: tmsu: Build with system SQLite3.
    
    * gnu/packages/file-systems.scm (tmsu)[build-flags,test-flags]: Add tag
    to build with system SQLite3 library.
    [inputs]: Add sqlite.
    
    Change-Id: If7e9ac1f1df159141d9305ec6221fed438ae4ecc
---
 gnu/packages/file-systems.scm | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/file-systems.scm b/gnu/packages/file-systems.scm
index 384a18a3fa..c36fc6b7b5 100644
--- a/gnu/packages/file-systems.scm
+++ b/gnu/packages/file-systems.scm
@@ -2191,8 +2191,10 @@ memory-efficient.")
      (list
       #:install-source? #f
       #:import-path "github.com/oniony/TMSU"
+      #:build-flags
+      #~(list "-tags=libsqlite3")
       #:test-flags
-      #~(list "-vet=off")
+      #~(list "-vet=off" "-tags=libsqlite3")
       #:phases
       #~(modify-phases %standard-phases
           (add-after 'install 'fix-bin-name
@@ -2202,7 +2204,8 @@ memory-efficient.")
     (inputs
      (list go-github-com-mattn-go-sqlite3
            go-github-com-hanwen-go-fuse
-           go-golang-org-x-crypto))
+           go-golang-org-x-crypto
+           sqlite))
     (home-page "https://github.com/oniony/TMSU";)
     (synopsis "Tag files and access them through a virtual file system")
     (description

Reply via email to