1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-13 18:40:57 +02:00

gnu: Add strutcpp.

* gnu/packages/cpp.scm (strutcpp): New variable.

Change-Id: I29bb54b271058cb51b8ac8242cc7b3a02726c706
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
Nicolas Graves 2025-06-15 02:24:08 +02:00 committed by Sharlatan Hellseher
parent 9c7f846a80
commit 5e9061f018
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -3889,6 +3889,33 @@ file name and location, as well as filters with friendly names (such as
for C++17 string-view.")
(license license:boost1.0)))
(define-public strutcpp
;; XXX: No releases.
(let ((commit "108ac9bb4993d661187ac7add0863abc7ff2531f")
(revision "0"))
(package
(name "strutcpp")
(version (git-version "0.0.0" revision commit))
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/Grumbel/strutcpp")
(commit commit)))
(file-name (git-file-name name version))
(sha256
(base32 "0m344qq3d57balzvc26fjx985nj2xwnfb1a7prkv3njj5lfcf127"))))
(build-system cmake-build-system)
(arguments
(list
#:configure-flags
#~(list "-DBUILD_TESTS=ON")))
(native-inputs (list googletest tinycmmc))
(home-page "https://github.com/Grumbel/strutcpp")
(synopsis "Collection of string utilities for C++")
(description "This package provides simple string utilities for C++.")
(license license:gpl3+))))
(define-public tsl-hopscotch-map
(package
(name "tsl-hopscotch-map")