mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: Add c-rrb.
* gnu/packages/c.scm (c-rrb): New variable.
This commit is contained in:
parent
f8d06e2c32
commit
72919598c8
1 changed files with 25 additions and 0 deletions
|
@ -48,6 +48,7 @@
|
||||||
#:use-module (guix store)
|
#:use-module (guix store)
|
||||||
#:use-module (gnu packages)
|
#:use-module (gnu packages)
|
||||||
#:use-module (gnu packages bash)
|
#:use-module (gnu packages bash)
|
||||||
|
#:use-module (gnu packages bdw-gc)
|
||||||
#:use-module (gnu packages bootstrap)
|
#:use-module (gnu packages bootstrap)
|
||||||
#:use-module (gnu packages bison)
|
#:use-module (gnu packages bison)
|
||||||
#:use-module (gnu packages check)
|
#:use-module (gnu packages check)
|
||||||
|
@ -110,6 +111,30 @@ to this dialect as GNU C. If you already know C, you can use this as a
|
||||||
reference manual.")
|
reference manual.")
|
||||||
(license license:fdl1.3+))))
|
(license license:fdl1.3+))))
|
||||||
|
|
||||||
|
(define-public c-rrb
|
||||||
|
(let ((commit "d908617ff84515af90c454ff4d0f98675ae6b456")
|
||||||
|
(revision "0"))
|
||||||
|
(package
|
||||||
|
(name "c-rrb")
|
||||||
|
(version (git-version "0.1.0" revision commit))
|
||||||
|
(source (origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/hypirion/c-rrb")
|
||||||
|
(commit commit)))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "0zmha3xi80vgdcwzb4vwdllf97dvggjpjfgahrpsb5f5qi3yshxa"))))
|
||||||
|
(build-system gnu-build-system)
|
||||||
|
(inputs (list libgc))
|
||||||
|
(native-inputs (list autoconf automake libtool))
|
||||||
|
(home-page "https://github.com/hypirion/c-rrb")
|
||||||
|
(synopsis "Relaxed Radix Balanced Trees")
|
||||||
|
(description "Relaxed Radix Balanced Trees are an immutable vector-like
|
||||||
|
data structure with good performance characteristics for concatenation and
|
||||||
|
slicing.")
|
||||||
|
(license license:boost1.0))))
|
||||||
|
|
||||||
(define-public cproc
|
(define-public cproc
|
||||||
(let ((commit "70fe9ef1810cc6c05bde9eb0970363c35fa7e802")
|
(let ((commit "70fe9ef1810cc6c05bde9eb0970363c35fa7e802")
|
||||||
(revision "1"))
|
(revision "1"))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue