M guix/build/profiles.scm => guix/build/profiles.scm +2 -1
@@ 24,7 24,8 @@
#:use-module (ice-9 ftw)
#:use-module (ice-9 match)
#:use-module (ice-9 pretty-print)
- #:export (build-profile))
+ #:export (ensure-writable-directory
+ build-profile))
;;; Commentary:
;;;
M guix/profiles.scm => guix/profiles.scm +3 -3
@@ 631,21 631,21 @@ creates the GTK+ 'icon-theme.cache' file for each theme."
#~(begin
(use-modules (guix build utils)
(guix build union)
+ (guix build profiles)
(srfi srfi-26)
(ice-9 ftw))
+
(let* ((destdir (string-append #$output "/share/icons"))
(icondirs (filter file-exists?
(map (cut string-append <> "/share/icons")
'#$(manifest-inputs manifest))))
(update-icon-cache (string-append
#+gtk+ "/bin/gtk-update-icon-cache")))
- ;; XXX: Should move to (guix build utils).
- (define ensure-writable-directory
- (@@ (guix build profiles) ensure-writable-directory))
;; Union all the icons.
(mkdir-p (string-append #$output "/share"))
(union-build destdir icondirs)
+
;; Update the 'icon-theme.cache' file for each icon theme.
(for-each
(lambda (theme)