guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 53b6628d038b256a5d7c8895cc3b1124104efb9d
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Thu Nov 6 12:32:58 2025 +0000

    gnu: Add (gnu packages duckdb) module.
    
    * gnu/packages/duckdb.scm: New file.
    * gnu/local.mk: Add to gnu/packages/duckdb.scm scope.
    
    Change-Id: I5a6bbb0114ab588e25a42c8e98a1d2a475d28e0c
---
 gnu/local.mk            |  1 +
 gnu/packages/duckdb.scm | 38 ++++++++++++++++++++++++++++++++++++++
 2 files changed, 39 insertions(+)

diff --git a/gnu/local.mk b/gnu/local.mk
index 6a05c17dee..0f2f034803 100644
--- a/gnu/local.mk
+++ b/gnu/local.mk
@@ -254,6 +254,7 @@ GNU_SYSTEM_MODULES =                                \
   %D%/packages/docker.scm                      \
   %D%/packages/documentation.scm               \
   %D%/packages/dpdk.scm        \
+  %D%/packages/duckdb.scm                      \
   %D%/packages/dvtm.scm                                \
   %D%/packages/easyrpg.scm                     \
   %D%/packages/ebook.scm                       \
diff --git a/gnu/packages/duckdb.scm b/gnu/packages/duckdb.scm
new file mode 100644
index 0000000000..52cb329eeb
--- /dev/null
+++ b/gnu/packages/duckdb.scm
@@ -0,0 +1,38 @@
+;;; GNU Guix --- Functional package management for GNU
+;;;
+;;; This file is part of GNU Guix.
+;;;
+;;; GNU Guix is free software; you can redistribute it and/or modify it
+;;; under the terms of the GNU General Public License as published by
+;;; the Free Software Foundation; either version 3 of the License, or (at
+;;; your option) any later version.
+;;;
+;;; GNU Guix is distributed in the hope that it will be useful, but
+;;; WITHOUT ANY WARRANTY; without even the implied warranty of
+;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+;;; GNU General Public License for more details.
+;;;
+;;; You should have received a copy of the GNU General Public License
+;;; along with GNU Guix.  If not, see <http://www.gnu.org/licenses/>.
+
+(define-module (gnu packages duckdb)
+  #:use-module ((guix licenses) #:prefix license:)
+  #:use-module (guix build-system cmake)
+  #:use-module (guix gexp)
+  #:use-module (guix git-download)
+  #:use-module (guix packages)
+  #:use-module (guix utils)
+  #:use-module (gnu packages))
+
+;;; Commentary:
+;;;
+;;; This module contains DuckDB - an analytical in-process SQL database
+;;; management system (https://www.duckdb.org/) and it's binding in different
+;;; programming languages with other related to DuckDB packages.
+;;;
+;;; Code:
+
+;;;
+;;; Avoid adding new packages to the end of this file. To reduce the chances
+;;; of a merge conflict, place them above in alphabetic order.
+;;;

Reply via email to