This is an automated email from the git hooks/post-receive script. guix_mirror_bot pushed a commit to branch master in repository guix.
The following commit(s) were added to refs/heads/master by this push: new 48fea09d68 gnu: Add xiccd. 48fea09d68 is described below commit 48fea09d68d575e82c986c93785786165bd95f82 Author: Ashvith Shetty <ashv...@noreply.codeberg.org> AuthorDate: Fri Jul 11 13:48:50 2025 +0530 gnu: Add xiccd. * gnu/packages/xdisorg.scm (xiccd): New variable. Closes: #1168 Change-Id: Ie33e8109dc37ce701ca41f81bfd8c4fee1b97827 Signed-off-by: 宋文武 <iyzs...@member.fsf.org> --- gnu/packages/xdisorg.scm | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) diff --git a/gnu/packages/xdisorg.scm b/gnu/packages/xdisorg.scm index fcb4f4bfa3..ae8d5fb4cc 100644 --- a/gnu/packages/xdisorg.scm +++ b/gnu/packages/xdisorg.scm @@ -4334,6 +4334,45 @@ on the screen and which then writes out the necessary C code for it.") (synopsis "GUI toolkit for X based on the X11 Xlib library, with OpenGL support"))) +(define-public xiccd + (let* ((version "0.4.1") + (tag (string-append "v" version))) + (package + (name "xiccd") + (version version) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/agalakhov/xiccd") + (commit tag))) + (file-name (git-file-name name version)) + (sha256 + (base32 "01favi5v4qbpj6v6k6iab7wxhjy4vjnqwcykhhv2rgcqw5dx4w4a")) + (modules '((guix build utils))) + (snippet '(begin + (substitute* "configure.ac" + (("m4_esyscmd_s\\([^\n\\(\\)\\[\\]]*\\)") + #$tag) + (("tar-ustar") + "tar-ustar foreign")) #t)))) + (build-system gnu-build-system) + (inputs (list colord glib libx11 libxrandr)) + (native-inputs (list autoconf automake gettext-minimal libtool + pkg-config)) + (home-page "https://github.com/agalakhov/xiccd") + (synopsis "X color profile daemon") + (description + "@command{xiccd} provides color profile support for desktop environments +other than GNOME and KDE. It does the following tasks: +@itemize +@item Enumerates displays and register them in colord. +@item Creates default ICC profiles based on EDID data. +@item Applies ICC profiles provided by colord. +@item Maintains user's private ICC storage directory. +@end itemize") + (license license:gpl3)))) + (define-public xxkb (package (name "xxkb")