guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 5fc3a79d054dde632b7258aa2251703f19c9df3a
Author: Carlos Durán Domínguez <[email protected]>
AuthorDate: Tue Feb 24 17:56:48 2026 +0100

    gnu: Add libfccp.
    
    * gnu/packages/cpp.scm (libfccp): New variable.
    
    Merges guix/guix!6679
    
    Change-Id: I38afbd0ef26cd1a9f2e77ff0ed077392f963faca
    Signed-off-by: Cayetano Santos <[email protected]>
---
 gnu/packages/cpp.scm | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/gnu/packages/cpp.scm b/gnu/packages/cpp.scm
index 50096c88ef..6ace5b553d 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")

Reply via email to