1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-12 18:10:47 +02:00

gnu: Add rang.

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

Change-Id: Iacbea931d392579ebdc49965fc3b248ae3759a6c
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
Andy Tai 2025-03-05 23:35:39 -08:00 committed by Nicolas Goaziou
parent 7c7ffd91f5
commit 170faebcf5
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -310,6 +310,27 @@ Segmentation and Registration Toolkit.")
parser, IO and conversion utilities.")
(license license:gpl2+)))
(define-public rang
(package
(name "rang")
(version "3.2")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/agauniyal/rang")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "0x2fp7zjjivgxblvx1j0qphn4ln6jq42x7xr757fywm3k03y7bil"))))
(build-system cmake-build-system)
(arguments (list #:tests? #f)) ; no tests
(home-page "https://agauniyal.github.io/rang/")
(synopsis "Header only terminal C++ library")
(description
"Rang is a minimal, header only C++ library for terminal goodies.")
(license license:asl2.0)))
(define-public range-v3
(package
(name "range-v3")