3
5
Fork 0
mirror of git://git.savannah.gnu.org/guix.git synced 2023-12-14 03:33:07 +01:00

gnu: termite: Open links properly without xdg-utils in profile

* gnu/packages/terminals.scm (termite)[inputs]: Add XDG-UTILS.
  [arguments](patch-xdg-open): New phase.

Signed-off-by: Marius Bakke <mbakke@fastmail.com>
This commit is contained in:
Jakub Kądziołka 2020-01-14 00:50:37 +01:00 committed by Marius Bakke
parent 412622ad66
commit e53829be49
No known key found for this signature in database
GPG key ID: A2A06DF2A33A54FA

View file

@ -17,6 +17,7 @@
;;; Copyright © 2019 Julien Lepiller <julien@lepiller.eu>
;;; Copyright © 2019 Pierre Langlois <pierre.langlois@gmx.com>
;;; Copyright © 2019 Brett Gilio <brettg@gnu.org>
;;; Copyright © 2020 Jakub Kądziołka <kuba@kadziolka.net>
;;;
;;; This file is part of GNU Guix.
;;;
@ -138,6 +139,11 @@ configurable through a graphical wizard.")
(arguments
`(#:phases
(modify-phases %standard-phases
(add-after 'unpack 'patch-xdg-open
(lambda _
(substitute* "termite.cc"
(("xdg-open") (which "xdg-open")))
#t))
(delete 'configure))
#:tests? #f
;; This sets the destination when installing the necessary terminal
@ -150,6 +156,7 @@ configurable through a graphical wizard.")
(inputs
`(("vte" ,vte-ng)
("gtk+" ,gtk+)
("xdg-utils" ,xdg-utils)
("ncurses" ,ncurses)))
(native-inputs
`(("pkg-config" ,pkg-config)))