Skip to content
Snippets Groups Projects
Commit 3d243e9c authored by Federico Beffa's avatar Federico Beffa
Browse files

gnu: evince: Add inputs.

* gnu/packages/gnome.scm (evince): Add 'dconf' and 'libcanberra' inputs.
  Remove custom phase 'set-mime-search-path which is now handled by
  glib-or-gtk-build-system.
parent beb8dc00
No related branches found
No related tags found
No related merge requests found
...@@ -220,19 +220,7 @@ (define-public evince ...@@ -220,19 +220,7 @@ (define-public evince
;; FIXME: Tests fail with: ;; FIXME: Tests fail with:
;; ImportError: No module named gi.repository ;; ImportError: No module named gi.repository
;; Where should that module come from? ;; Where should that module come from?
#:tests? #f #:tests? #f))
#:phases (alist-cons-after
'install 'set-mime-search-path
(lambda* (#:key inputs outputs #:allow-other-keys)
;; Wrap 'evince' so that it knows where MIME info is.
(let ((out (assoc-ref outputs "out"))
(mime (assoc-ref inputs "shared-mime-info")))
(wrap-program (string-append out "/bin/evince")
`("XDG_DATA_DIRS" ":" prefix
,(list (string-append mime "/share")
(string-append out "/share"))))))
%standard-phases)))
(inputs (inputs
`(("libspectre" ,libspectre) `(("libspectre" ,libspectre)
;; ("djvulibre" ,djvulibre) ;; ("djvulibre" ,djvulibre)
...@@ -251,7 +239,9 @@ (define-public evince ...@@ -251,7 +239,9 @@ (define-public evince
("libsm" ,libsm) ("libsm" ,libsm)
("libice" ,libice) ("libice" ,libice)
("shared-mime-info" ,shared-mime-info) ("shared-mime-info" ,shared-mime-info)
("dconf" ,dconf)
("libcanberra" ,libcanberra)
;; For tests. ;; For tests.
("dogtail" ,python2-dogtail))) ("dogtail" ,python2-dogtail)))
(native-inputs (native-inputs
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment