[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
67/71: profiles: Add xdg-mime-database hook.
From: |
??? |
Subject: |
67/71: profiles: Add xdg-mime-database hook. |
Date: |
Mon, 02 May 2016 14:08:22 +0000 |
iyzsong pushed a commit to branch gnome-updates
in repository guix.
commit 6c06b1fdac1a00385e393e1ad4735212b3ab63ad
Author: 宋文武 <address@hidden>
Date: Thu Feb 4 15:35:03 2016 +0800
profiles: Add xdg-mime-database hook.
* guix/profiles.scm (xdg-mime-database): New function.
(%default-profile-hooks): Add it.
---
guix/profiles.scm | 39 ++++++++++++++++++++++++++++++++++++++-
1 file changed, 38 insertions(+), 1 deletion(-)
diff --git a/guix/profiles.scm b/guix/profiles.scm
index c298bac..93d03ce 100644
--- a/guix/profiles.scm
+++ b/guix/profiles.scm
@@ -721,6 +721,42 @@ MIME type."
#:substitutable? #f)
(with-monad %store-monad (return #f))))
+(define (xdg-mime-database manifest)
+ "Return a derivation that builds the @file{mime.cache} database from manifest
+entries. It's used to query the MIME type of a given file."
+ (define shared-mime-info
+ (module-ref (resolve-interface '(gnu packages gnome))
+ 'shared-mime-info))
+
+ (define build
+ #~(begin
+ (use-modules (srfi srfi-26)
+ (guix build utils)
+ (guix build union))
+ (let* ((datadir (string-append #$output "/share"))
+ (destdir (string-append datadir "/mime"))
+ (mimedirs (filter file-exists?
+ (map (cut string-append <>
+ "/share/mime")
+ '#$(manifest-inputs manifest))))
+ (update-mime-database (string-append
+ #+shared-mime-info
+ "/bin/update-mime-database")))
+ (mkdir-p datadir)
+ (union-build destdir mimedirs
+ #:log-port (%make-void-port "w"))
+ (setenv "XDG_DATA_HOME" datadir)
+ (zero? (system* update-mime-database destdir)))))
+
+ ;; Don't run the hook when 'shared-mime-info' is not installed.
+ (if (manifest-lookup manifest (manifest-pattern (name "shared-mime-info")))
+ (gexp->derivation "xdg-mime-database" build
+ #:modules '((guix build utils)
+ (guix build union))
+ #:local-build? #t
+ #:substitutable? #f)
+ (with-monad %store-monad (return #f))))
+
(define %default-profile-hooks
;; This is the list of derivation-returning procedures that are called by
;; default when making a non-empty profile.
@@ -728,7 +764,8 @@ MIME type."
ghc-package-cache-file
ca-certificate-bundle
gtk-icon-themes
- xdg-desktop-database))
+ xdg-desktop-database
+ xdg-mime-database))
(define* (profile-derivation manifest
#:key
- 45/71: gnu: file-roller: Update to 3.20.1., (continued)
- 45/71: gnu: file-roller: Update to 3.20.1., ???, 2016/05/02
- 47/71: gnu: mutter: Update to 3.20.1., ???, 2016/05/02
- 50/71: gnu: network-manager-applet: Update to 1.2.0., ???, 2016/05/02
- 59/71: gnu: gedit: Enable Python Console plugin., ???, 2016/05/02
- 58/71: gnu: libpeas: Add inputs., ???, 2016/05/02
- 54/71: gnu: baobab: Update to 3.20.1., ???, 2016/05/02
- 55/71: gnu: dconf-editor: Update to 3.20.1., ???, 2016/05/02
- 60/71: gnu: grilo: Update to 0.3.0., ???, 2016/05/02
- 63/71: gnu: gnome: Add baobab, gnome-backgrounds and gvfs., ???, 2016/05/02
- 52/71: gnu: gnome-control-center: Update to 3.20.1., ???, 2016/05/02
- 67/71: profiles: Add xdg-mime-database hook.,
??? <=
- 62/71: gnu: nautilus: Update to 3.20.1., ???, 2016/05/02
- 26/71: gnu: gtksourceview: Update to 3.20.2., ???, 2016/05/02
- 07/71: gnu: Add antiword., ???, 2016/05/02
- 28/71: gnu: gnome-desktop: Update to 3.20.1., ???, 2016/05/02
- 31/71: gnu: rest: Update to 0.8.0., ???, 2016/05/02
- 17/71: Revert "Revert "gnu: inkscape: Fix build with glibmm-2.48."", ???, 2016/05/02
- 51/71: gnu: gdm: Update to 3.20.1., ???, 2016/05/02
- 57/71: gnu: network-manager: Update to 1.2.0., ???, 2016/05/02
- 56/71: gnu: librsvg: Drop 'loaders.cache' file., ???, 2016/05/02
- 68/71: gnu: gnome: Add desktop-file-utils., ???, 2016/05/02