gnu: Add duckdb.
* gnu/packages/databases.scm (duckdb): New variable. Change-Id: Ic689dbd4bb91a2c806f846464e2af95be50cd069 Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
parent
2ba2875dbd
commit
3fa4a8baf3
1 changed files with 34 additions and 1 deletions
|
@ -46,7 +46,7 @@
|
||||||
;;; Copyright © 2020 Vinicius Monego <monego@posteo.net>
|
;;; Copyright © 2020 Vinicius Monego <monego@posteo.net>
|
||||||
;;; Copyright © 2020 Vincent Legoll <vincent.legoll@gmail.com>
|
;;; Copyright © 2020 Vincent Legoll <vincent.legoll@gmail.com>
|
||||||
;;; Copyright © 2021 Sharlatan Hellseher <sharlatanus@gmail.com>
|
;;; Copyright © 2021 Sharlatan Hellseher <sharlatanus@gmail.com>
|
||||||
;;; Copyright © 2021 Greg Hogan <code@greghogan.com>
|
;;; Copyright © 2021, 2024 Greg Hogan <code@greghogan.com>
|
||||||
;;; Copyright © 2021 David Larsson <david.larsson@selfhosted.xyz>
|
;;; Copyright © 2021 David Larsson <david.larsson@selfhosted.xyz>
|
||||||
;;; Copyright © 2021 Pjotr Prins <pjotr.guix@thebird.nl>
|
;;; Copyright © 2021 Pjotr Prins <pjotr.guix@thebird.nl>
|
||||||
;;; Copyright © 2021 Bonface Munyoki Kilyungi <me@bonfacemunyoki.com>
|
;;; Copyright © 2021 Bonface Munyoki Kilyungi <me@bonfacemunyoki.com>
|
||||||
|
@ -190,6 +190,39 @@
|
||||||
#:use-module (srfi srfi-26)
|
#:use-module (srfi srfi-26)
|
||||||
#:use-module (ice-9 match))
|
#:use-module (ice-9 match))
|
||||||
|
|
||||||
|
(define-public duckdb
|
||||||
|
(package
|
||||||
|
(name "duckdb")
|
||||||
|
(version "0.9.2")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/duckdb/duckdb")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0dbsxyiz7c8sxflbfj87qv0b2s69zk802vsk5h00ra8w8fcbqlj0"))
|
||||||
|
(modules '((guix build utils)))
|
||||||
|
(snippet
|
||||||
|
#~(begin
|
||||||
|
;; There is no git checkout from which to read the version tag.
|
||||||
|
(substitute* "CMakeLists.txt"
|
||||||
|
(("set\\(DUCKDB_VERSION \"[^\"]*\"")
|
||||||
|
(string-append "set(DUCKDB_VERSION \"v" #$version "-dev0\"")))))))
|
||||||
|
(build-system cmake-build-system)
|
||||||
|
(home-page "https://duckdb.org")
|
||||||
|
(synopsis "In-process SQL OLAP database management system")
|
||||||
|
(description "CLI and C/C++ source libraries for DuckDB, a relational
|
||||||
|
(table-oriented) @acronym{DBMS, Database Management System} that supports
|
||||||
|
@acronym{SQL, Structured Query Language}, contains a columnar-vectorized query
|
||||||
|
execution engine, and provides transactional @acronym{ACID, Atomicity
|
||||||
|
Consistency Isolation and Durability} guarantees via bulk-optimized
|
||||||
|
@acronym{MVCC, Multi-Version Concurrency Control}. Data can be stored in
|
||||||
|
persistent, single-file databases with support for secondary indexes.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public ephemeralpg
|
(define-public ephemeralpg
|
||||||
(package
|
(package
|
||||||
(name "ephemeralpg")
|
(name "ephemeralpg")
|
||||||
|
|
Reference in a new issue