guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit 1d31084865822ffcea0cf9bde21c16735aea6301
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Fri Jan 9 10:26:33 2026 +0000
gnu: Add c-stdaux.
* gnu/packages/c.scm (c-stdaux): New variable.
Change-Id: Iddb4f0f77e5b4c9be03d8029272d47e2dddf7bf1
---
gnu/packages/c.scm | 26 ++++++++++++++++++++++++++
1 file changed, 26 insertions(+)
diff --git a/gnu/packages/c.scm b/gnu/packages/c.scm
index e81250ea8e..def7afdc88 100644
--- a/gnu/packages/c.scm
+++ b/gnu/packages/c.scm
@@ -24,6 +24,7 @@
;;; Copyright @ 2022, Kitzman <[email protected]>
;;; Copyright @ 2025 Dariqq <[email protected]>
;;; Copyright © 2025 Ashish SHUKLA <[email protected]>
+;;; Copyright © 2026 Sharlatan Hellseher <[email protected]>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -150,6 +151,31 @@ data structure with good performance characteristics for
concatenation and
slicing.")
(license license:boost1.0))))
+(define-public c-stdaux
+ (package
+ (name "c-stdaux")
+ (version "1.6.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/c-util/c-stdaux")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0kj03iw2sfy3ni6s4p810wkaj561bl8fqqgzyvb48llnkyi6appz"))))
+ (build-system meson-build-system)
+ (home-page "https://c-util.github.io/c-stdaux/")
+ (synopsis "Auxiliary macros and functions for the C standard library")
+ (description
+ "This package provides support macros and auxiliary functions around
+the functionality of common C standard libraries. This includes helpers for
+the ISO C Standard Library, but also other common specifications like POSIX or
+common extended features of widespread compilers like @code{gcc} and
+@code{clang}.")
+ (license (list license:asl2.0
+ license:lgpl2.1+))))
+
(define-public cproc
(let ((commit "14a8916e23bc6daebcb54f1384fa0eb2455072e3")
(revision "3"))