summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2026-03-06 11:15:26 +0000
committerAndreas Enge <andreas@enge.fr>2026-03-18 14:07:29 +0100
commitcda484dc4ed0dafd074836b26182a5cd9c1c11db (patch)
treeb1a7eee239a6358033fb6f10d0e1ae7810feb1d4
parentdd961cfb98bda67ab7f688bd19969b335c5cc828 (diff)
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
-rw-r--r--gnu/packages/file-systems.scm7
1 files changed, 5 insertions, 2 deletions
diff --git a/gnu/packages/file-systems.scm b/gnu/packages/file-systems.scm
index e09e4f475ad..9c23769688c 100644
--- a/gnu/packages/file-systems.scm
+++ b/gnu/packages/file-systems.scm
@@ -2221,8 +2221,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
@@ -2232,7 +2234,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