[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
13/15: gnu: Add robin-hood-hashing.
From: |
guix-commits |
Subject: |
13/15: gnu: Add robin-hood-hashing. |
Date: |
Thu, 28 Sep 2023 05:46:45 -0400 (EDT) |
civodul pushed a commit to branch master
in repository guix.
commit 700e4e8a42904b479a0cecaca51f634888f5d893
Author: Jean-Pierre De Jesus DIAZ <jean@foundationdevices.com>
AuthorDate: Wed Sep 20 14:39:31 2023 +0200
gnu: Add robin-hood-hashing.
* gnu/packages/cpp.scm (robin-hood-hashing): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
---
gnu/packages/cpp.scm | 29 +++++++++++++++++++++++++++++
1 file changed, 29 insertions(+)
diff --git a/gnu/packages/cpp.scm b/gnu/packages/cpp.scm
index 4ee7f375d7..7117ada000 100644
--- a/gnu/packages/cpp.scm
+++ b/gnu/packages/cpp.scm
@@ -37,6 +37,7 @@
;;; Copyright © 2023 Artyom V. Poptsov <poptsov.artyom@gmail.com>
;;; Copyright © 2023 Liliana Marie Prikler <liliana.prikler@gmail.com>
;;; Copyright © 2023 Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
+;;; Copyright © 2023 Foundation Devices, Inc. <hello@foundationdevices.com>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -223,6 +224,34 @@ range-v3 ranges are an abstraction layer on top of
iterators.")
;; Others
license:boost1.0))))
+(define-public robin-hood-hashing
+ (package
+ (name "robin-hood-hashing")
+ (version "3.11.5")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/martinus/robin-hood-hashing")
+ (commit version)))
+ (modules '((guix build utils)))
+ (snippet #~(delete-file-recursively "src/test/thirdparty"))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "1qx6i09sp8c3l89mhyaql144nzh2h26ky9ms3n5l85qplx1vv2r7"))))
+ (build-system cmake-build-system)
+ (arguments
+ (list #:tests? #f ;; Needs bundled libraries for tests.
+ ;; By default this option is set to ON and removes the ability to
+ ;; install the library.
+ #:configure-flags
+ #~(list "-DRH_STANDALONE_PROJECT=OFF")))
+ (home-page "https://github.com/martinus/robin-hood-hashing")
+ (synopsis "Unordered set and map data structures library")
+ (description "This library provides a header-only unordered set and map
+data structures for C++.")
+ (license license:expat)))
+
(define-public c++-gsl
(package
(name "c++-gsl")
- 06/15: gnu: ucsim: Use gexps., (continued)
- 06/15: gnu: ucsim: Use gexps., guix-commits, 2023/09/28
- 03/15: gnu: openssl@1.1: Upgrade replacement to 1.1.1u., guix-commits, 2023/09/28
- 08/15: gnu: ucsim: Move documentation to "doc" output., guix-commits, 2023/09/28
- 02/15: gnu: openssl@1.1: Really replace with fixed version., guix-commits, 2023/09/28
- 04/15: gnu: ublock-origin: Update to 1.51.0., guix-commits, 2023/09/28
- 15/15: gnu: fulcrum: Update to 1.9.1., guix-commits, 2023/09/28
- 09/15: gnu: ucsim: Update to 0.8.0., guix-commits, 2023/09/28
- 11/15: gnu: emacs-sly: Update to 1.0.43-8.df62aba., guix-commits, 2023/09/28
- 10/15: archive: Fix ‘--version’ typo., guix-commits, 2023/09/28
- 14/15: gnu: Add simdjson 0.6., guix-commits, 2023/09/28
- 13/15: gnu: Add robin-hood-hashing.,
guix-commits <=
- 07/15: gnu: ucsim: Disable tests., guix-commits, 2023/09/28
- 01/15: gnu: guix: Update to d0438fc., guix-commits, 2023/09/28
- 12/15: gnu: sbcl-slynk: Update to 1.0.43-8-df62aba., guix-commits, 2023/09/28
- 05/15: gnu: xpra: Update to 5.0.2, guix-commits, 2023/09/28