mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-18 21:46:35 +01:00
gnu: duckdb: Build with for core extensions.
DuckDB comes with a set of built-in extensions. This commit enables those that don't require extra dependencies. * gnu/packages/databases.scm (duckdb)[arguments]<#:configure-flags>: Add BUILD_EXTENSIONS with autocomplete, fts, icu, json, parquet and tpch. Change-Id: Ibac5efaeec04dcba98af1c497e75632166941fc2
This commit is contained in:
parent
9d09b0cf84
commit
a5a540d713
1 changed files with 3 additions and 0 deletions
|
@ -214,6 +214,9 @@ (define-public duckdb
|
|||
(substitute* "CMakeLists.txt"
|
||||
(("set\\(DUCKDB_VERSION \"[^\"]*\"")
|
||||
(string-append "set(DUCKDB_VERSION \"v" #$version "-dev0\"")))))))
|
||||
(arguments
|
||||
`(#:configure-flags
|
||||
(list "-DBUILD_EXTENSIONS=autocomplete;fts;icu;json;parquet;tpch;")))
|
||||
(build-system cmake-build-system)
|
||||
(home-page "https://duckdb.org")
|
||||
(synopsis "In-process SQL OLAP database management system")
|
||||
|
|
Loading…
Reference in a new issue