summaryrefslogtreecommitdiff
path: root/gnu/packages/cpp.scm
diff options
context:
space:
mode:
authorCarlos Durán Domínguez <wurt@wurt.eu>2026-02-24 17:56:48 +0100
committerCayetano Santos <csantosb@inventati.org>2026-03-02 14:56:09 +0100
commit5fc3a79d054dde632b7258aa2251703f19c9df3a (patch)
treecbe60b32124784e95c54143421ee606062365c7c /gnu/packages/cpp.scm
parent50f998e04c18165e072a6c368c3435ecb07834b5 (diff)
gnu: Add libfccp.
* gnu/packages/cpp.scm (libfccp): New variable. Merges guix/guix!6679 Change-Id: I38afbd0ef26cd1a9f2e77ff0ed077392f963faca Signed-off-by: Cayetano Santos <csantosb@inventati.org>
Diffstat (limited to 'gnu/packages/cpp.scm')
-rw-r--r--gnu/packages/cpp.scm28
1 files changed, 28 insertions, 0 deletions
diff --git a/gnu/packages/cpp.scm b/gnu/packages/cpp.scm
index 50096c88ef6..6ace5b553d0 100644
--- a/gnu/packages/cpp.scm
+++ b/gnu/packages/cpp.scm
@@ -2734,6 +2734,34 @@ provides a number of utilities to make coding with expected cleaner.")
2734 (home-page "https://tl.tartanllama.xyz/") 2734 (home-page "https://tl.tartanllama.xyz/")
2735 (license license:cc0))) 2735 (license license:cc0)))
2736 2736
2737(define-public libfccp
2738 ;; Header-only library without any official release versions available.
2739 (let ((commit "4ade42d5f8c454c6c57b3dce9c51c6dd02182a66")
2740 (revision "0"))
2741 (package
2742 (name "libfccp")
2743 (version (git-version "0.0.0" revision commit))
2744 (source
2745 (origin
2746 (method git-fetch)
2747 (uri (git-reference
2748 (url "https://github.com/ben-strasser/fast-cpp-csv-parser")
2749 (commit commit)))
2750 (file-name (git-file-name name version))
2751 (sha256
2752 (base32 "1y7ads97gkrjg1jc532n8gmjry0qhqxginw1gq7b4lk9s0pyl540"))))
2753 (build-system copy-build-system)
2754 (arguments
2755 (list
2756 #:install-plan
2757 #~`(("csv.h" "include/libfccp/"))))
2758 (synopsis "Fast header-only library for reading CSV files")
2759 (description
2760 "This is a small, easy-to-use and fast header-only library for reading
2761comma separated value (CSV) files.")
2762 (home-page "https://github.com/ben-strasser/fast-cpp-csv-parser")
2763 (license license:bsd-3))))
2764
2737(define-public immer 2765(define-public immer
2738 ;; Use latest commit to fix build with gcc 14. 2766 ;; Use latest commit to fix build with gcc 14.
2739 (let ((commit "df6ef46d97e1fe81f397015b9aeb32505cef653b") 2767 (let ((commit "df6ef46d97e1fe81f397015b9aeb32505cef653b")