guix_mirror_bot pushed a commit to branch master
in repository guix.
commit e69a9801965521fe9a2c1f7dca8704f9c9b2b9fb
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Thu Nov 6 12:52:00 2025 +0000
gnu: duckdb: Update to 1.4.1.
* gnu/packages/duckdb.scm (duckdb): Update to 1.4.1.
Change-Id: Ib9640b2f39ff492404423373f9223f6c71c69f0c
---
gnu/packages/duckdb.scm | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/duckdb.scm b/gnu/packages/duckdb.scm
index f7af20cd8e..222c53419b 100644
--- a/gnu/packages/duckdb.scm
+++ b/gnu/packages/duckdb.scm
@@ -4,6 +4,7 @@
;;; Copyright © 2024 Nicolas Graves <[email protected]>
;;; Copyright © 2024, 2025 Ekaitz Zarraga <[email protected]>
;;; Copyright © 2025 Ricardo Wurmus <[email protected]>
+;;; Copyright © 2025 Sharlatan Hellseher <[email protected]>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -40,7 +41,7 @@
(define-public duckdb
(package
(name "duckdb")
- (version "1.3.2")
+ (version "1.4.1")
(source
(origin
(method git-fetch)
@@ -49,10 +50,11 @@
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
- (base32 "1dg3g66az17z4snxxw7cslqdkrvbx2nnyry73yi77yp0vpri1lz8"))))
+ (base32 "1vywdhn930z4aw2ljxp5mx3cfivpvv1d88kq4rhizq3c4hpq9yf3"))))
(build-system cmake-build-system)
(arguments
(list
+ ;; TODO: Find out how to run tests, see: <.github/workflows>.
#:tests? #f
#:configure-flags
#~(list "-DBUILD_EXTENSIONS=autocomplete;icu;json;parquet;tpch;"