all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [PATCH 1/2] profiles: Add xdg-desktop-database hook.
@ 2016-01-31 12:03 宋文武
  2016-01-31 12:03 ` [PATCH 2/2] profiles: Add xdg-mime-database hook 宋文武
  2016-02-02 13:09 ` [PATCH 1/2] profiles: Add xdg-desktop-database hook Ludovic Courtès
  0 siblings, 2 replies; 8+ messages in thread
From: 宋文武 @ 2016-01-31 12:03 UTC (permalink / raw)
  To: guix-devel; +Cc: 宋文武

* guix/profiles (xdg-desktop-database): New function.
(%default-profile-hooks): Add it.
---
 guix/profiles.scm | 34 +++++++++++++++++++++++++++++++++-
 1 file changed, 33 insertions(+), 1 deletion(-)

diff --git a/guix/profiles.scm b/guix/profiles.scm
index ce86ff8..38e2730 100644
--- a/guix/profiles.scm
+++ b/guix/profiles.scm
@@ -684,13 +684,45 @@ creates the GTK+ 'icon-theme.cache' file for each theme."
                           #:substitutable? #f)
         (return #f))))
 
+(define (xdg-desktop-database manifest)
+  "Return a derivation that builds the @file{mimeinfo.cache} database from
+desktop files."
+  (define desktop-file-utils
+    (module-ref (resolve-interface '(gnu packages gnome))
+                'desktop-file-utils))
+
+  (define build
+    #~(begin
+        (use-modules (srfi srfi-26)
+                     (guix build utils)
+                     (guix build union))
+        (let* ((destdir (string-append #$output "/share/applications"))
+               (appdirs (filter file-exists?
+                                (map (cut string-append <>
+                                          "/share/applications")
+                                     '#$(manifest-inputs manifest))))
+               (update-desktop-database (string-append
+                                         #+desktop-file-utils
+                                         "/bin/update-desktop-database")))
+          (mkdir-p (string-append #$output "/share"))
+          (union-build destdir appdirs
+                       #:log-port (%make-void-port "w"))
+          (zero? (system* update-desktop-database destdir)))))
+
+  (gexp->derivation "xdg-desktop-database" build
+                    #:modules '((guix build utils)
+                                (guix build union))
+                    #:local-build? #t
+                    #:substitutable? #f))
+
 (define %default-profile-hooks
   ;; This is the list of derivation-returning procedures that are called by
   ;; default when making a non-empty profile.
   (list info-dir-file
         ghc-package-cache-file
         ca-certificate-bundle
-        gtk-icon-themes))
+        gtk-icon-themes
+        xdg-desktop-database))
 
 (define* (profile-derivation manifest
                              #:key
-- 
2.5.0

^ permalink raw reply related	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2016-02-07 20:13 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-01-31 12:03 [PATCH 1/2] profiles: Add xdg-desktop-database hook 宋文武
2016-01-31 12:03 ` [PATCH 2/2] profiles: Add xdg-mime-database hook 宋文武
2016-01-31 12:32   ` 宋文武
2016-02-02 13:11     ` Ludovic Courtès
2016-02-02 13:10   ` Ludovic Courtès
2016-02-02 13:09 ` [PATCH 1/2] profiles: Add xdg-desktop-database hook Ludovic Courtès
2016-02-04  7:54   ` 宋文武
2016-02-07 20:13     ` Ludovic Courtès

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.