diff options
| author | Carlos Durán Domínguez <wurt@wurt.eu> | 2026-02-24 17:56:48 +0100 |
|---|---|---|
| committer | Cayetano Santos <csantosb@inventati.org> | 2026-03-02 14:56:09 +0100 |
| commit | 5fc3a79d054dde632b7258aa2251703f19c9df3a (patch) | |
| tree | cbe60b32124784e95c54143421ee606062365c7c /gnu/packages/cpp.scm | |
| parent | 50f998e04c18165e072a6c368c3435ecb07834b5 (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.scm | 28 |
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.") (home-page "https://tl.tartanllama.xyz/") (license license:cc0))) +(define-public libfccp + ;; Header-only library without any official release versions available. + (let ((commit "4ade42d5f8c454c6c57b3dce9c51c6dd02182a66") + (revision "0")) + (package + (name "libfccp") + (version (git-version "0.0.0" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/ben-strasser/fast-cpp-csv-parser") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1y7ads97gkrjg1jc532n8gmjry0qhqxginw1gq7b4lk9s0pyl540")))) + (build-system copy-build-system) + (arguments + (list + #:install-plan + #~`(("csv.h" "include/libfccp/")))) + (synopsis "Fast header-only library for reading CSV files") + (description + "This is a small, easy-to-use and fast header-only library for reading +comma separated value (CSV) files.") + (home-page "https://github.com/ben-strasser/fast-cpp-csv-parser") + (license license:bsd-3)))) + (define-public immer ;; Use latest commit to fix build with gcc 14. (let ((commit "df6ef46d97e1fe81f397015b9aeb32505cef653b") |
