summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-11-02 22:16:15 +0000
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-11-03 07:53:59 +0000
commitac58ac5385161ddf8a60d02748b1d4c2099de6c4 (patch)
tree81f77c5deea09992e71c9bd3a5b875659db5ad4c /gnu
parent919288dd790c3b2407fcf67c49b0cb3e9047c0d3 (diff)
gnu: cowsql: Update to 1.15.9.
* gnu/packages/high-availability.scm (cowsql): Update to 1.15.9. Change-Id: I32930631ba0b49b82ed0ac1e494cce505c5b4bfb
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/high-availability.scm73
1 files changed, 34 insertions, 39 deletions
diff --git a/gnu/packages/high-availability.scm b/gnu/packages/high-availability.scm
index 608304c0daa..d1e0b66223b 100644
--- a/gnu/packages/high-availability.scm
+++ b/gnu/packages/high-availability.scm
@@ -78,51 +78,46 @@
#:prefix license:))
(define-public cowsql
- ;; Use the latest commit which includs
- ;; <https://github.com/cowsql/cowsql/pull/37>, revert back to vertion tags
- ;; when released.
- (let ((commit "cb624d3263ca22b42ecfa8a1dd8a0c8d990db7b6")
- (revision "0"))
- (package
- (name "cowsql")
- (version (git-version "1.15.8" revision commit))
- (source
- (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://github.com/cowsql/cowsql")
- (commit commit)))
- (file-name (git-file-name name version))
- (sha256
- (base32 "0b4ymmsp9y9zzwanp739bc6p5qzl1h6ny2g50blhda99xcnlaf77"))))
- (build-system gnu-build-system)
- (arguments
- (list
- #:phases
- #~(modify-phases %standard-phases
- (replace 'bootstrap
- (lambda _
- (invoke "autoreconf" "-vfi"))))))
- (native-inputs
- (list autoconf
- automake
- libtool
- pkg-config))
- (inputs
- (list cowsql-raft
- libuv
- sqlite))
- (home-page "https://github.com/cowsql/cowsql")
- (synopsis "Embeddable, replicated and fault tolerant SQL engine")
- (description
- "cowsql (/ˈkaʊ,siːkwəl/ listen) is a C library that implements an
+ (package
+ (name "cowsql")
+ (version "1.15.9")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/cowsql/cowsql")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "10pj422lzl0rbid4cxg80rhzgqbz3mnhnhx8s0zm54nniirdbn7d"))))
+ (build-system gnu-build-system)
+ (arguments
+ (list
+ #:phases
+ #~(modify-phases %standard-phases
+ (replace 'bootstrap
+ (lambda _
+ (invoke "autoreconf" "-vfi"))))))
+ (native-inputs
+ (list autoconf
+ automake
+ libtool
+ pkg-config))
+ (inputs
+ (list cowsql-raft
+ libuv
+ sqlite))
+ (home-page "https://github.com/cowsql/cowsql")
+ (synopsis "Embeddable, replicated and fault tolerant SQL engine")
+ (description
+ "cowsql (/ˈkaʊ,siːkwəl/ listen) is a C library that implements an
embeddable and replicated SQL database engine with high availability and
automatic failover.
cowsql extends SQLite with a network protocol that can connect together
various instances of your application and have them act as a highly-available
cluster, with no dependency on external databases.")
- (license license:gpl3+))))
+ (license license:gpl3+)))
(define-public cowsql-raft
(package