diff options
Diffstat (limited to 'gnu/packages/messaging.scm')
| -rw-r--r-- | gnu/packages/messaging.scm | 9 | 
1 files changed, 3 insertions, 6 deletions
| diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm index e5ecdb8894..061e2fe236 100644 --- a/gnu/packages/messaging.scm +++ b/gnu/packages/messaging.scm @@ -322,9 +322,7 @@ user interfaces in a fast and easy way.  It is based on GLib and ncurses.")             (lambda* (#:key inputs #:allow-other-keys)               (substitute* "protobufgen.sh"                 (("/bin/sh") -                (string-append (assoc-ref inputs "bash") -                               "/bin/sh"))) -             #t))))) +                (search-input-file inputs "/bin/sh"))))))))      (native-inputs       `(("autoconf" ,autoconf)         ("automake" ,automake) @@ -1127,7 +1125,7 @@ of xmpppy.")           "share/gajim/plugins")))        ;; Gajim needs to use the propagated inputs of its plugins.        (search-path-specification -       (variable "PYTHONPATH") +       (variable "GUIX_PYTHONPATH")         (files          (list           (string-append @@ -1577,8 +1575,7 @@ messenger protocol.")            (lambda* (#:key inputs outputs #:allow-other-keys)              (substitute* "../source/src/xlib/gtk.c"                           (("libgtk-3.so") -                         (string-append (assoc-ref inputs "gtk+") -                                        "/lib/libgtk-3.so"))))) +                          (search-input-file inputs "/lib/libgtk-3.so")))))          (add-after 'install 'wrap-program            (lambda* (#:key inputs outputs #:allow-other-keys)              (wrap-program (string-append (assoc-ref outputs "out") | 
