GNU bug report logs -
#78100
[PATCH] guix: gtk-icon-themes: Generate output if no icons
Previous Next
Reported by: Rutherther <rutherther <at> ditigal.xyz>
Date: Sun, 27 Apr 2025 21:14:01 UTC
Severity: normal
Tags: patch
Done: 宋文武 <iyzsong <at> envs.net>
Bug is archived. No further changes may be made.
Full log
View this message in rfc822 format
[Message part 1 (text/plain, inline)]
Your bug report
#78100: [PATCH] guix: gtk-icon-themes: Generate output if no icons
which was filed against the guix-patches package, has been closed.
The explanation is attached below, along with your original report.
If you require more details, please reply to 78100 <at> debbugs.gnu.org.
--
78100: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=78100
GNU Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
Rutherther <rutherther <at> ditigal.xyz> writes:
> When there are no icon themes, but gtk+ is referenced in the manifest,
> the output won't be produced in the gtk-icon-themes derivation.
> This will lead to an error.
>
> The problem has been reported by lilyp on IRC. I can't find any packages in
> Guix that use gtk+ in inputs and don't have any icons, but this low-effort
> package replicates the issue:
Pushed to master as commit d47379b8dc6fb, thank you!
[Message part 3 (message/rfc822, inline)]
When there are no icon themes, but gtk+ is referenced in the manifest,
the output won't be produced in the gtk-icon-themes derivation.
This will lead to an error.
The problem has been reported by lilyp on IRC. I can't find any packages in
Guix that use gtk+ in inputs and don't have any icons, but this low-effort
package replicates the issue:
```
(package
(inherit bash)
(inputs
(modify-inputs
(package-inputs bash)
(append gtk+))))
```
* guix/profiles.scm (gtk-icon-themes): Produce output when no icon cache is created.
Change-Id: I2aa5ab0023c9c584182c67f79102fb66b46a3a7d
---
guix/profiles.scm | 3 +++
1 file changed, 3 insertions(+)
diff --git a/guix/profiles.scm b/guix/profiles.scm
index 64d669c353..086280329e 100644
--- a/guix/profiles.scm
+++ b/guix/profiles.scm
@@ -1379,6 +1379,9 @@ (define* (gtk-icon-themes manifest #:optional system)
(srfi srfi-26)
(ice-9 ftw))
+ ;; Ensure output is produced when no cache files are created.
+ (mkdir-p #$output)
+
(let* ((destdir (string-append #$output "/share/icons"))
(icondirs (filter file-exists?
(map (cut string-append <> "/share/icons")
base-commit: 4e79ec48af8173f0f2a86fa2c8f971dc8234b941
--
2.49.0
This bug report was last modified 22 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.