From 256910012b96e0c7489ac65e7748f4806906c360 Mon Sep 17 00:00:00 2001 From: Maxime Devos Date: Sat, 5 Jun 2021 11:04:21 +0200 Subject: [PATCH 6/8] gnu: qtpass: Set #:sh argument of 'wrap-qt-program'. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/password-utils.scm (qtpass)[arguments]<#:phases>{wrap-qt}: Set #:sh argument of ‘wrap-qt-program’. --- gnu/packages/password-utils.scm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/gnu/packages/password-utils.scm b/gnu/packages/password-utils.scm index 2a5a1e5c9f..19b1b5623c 100644 --- a/gnu/packages/password-utils.scm +++ b/gnu/packages/password-utils.scm @@ -683,8 +683,9 @@ key URIs using the standard otpauth:// scheme.") (install-file "qtpass.1" man) #t))) (add-after 'install 'wrap-qt - (lambda* (#:key outputs #:allow-other-keys) - (wrap-qt-program (assoc-ref outputs "out") "qtpass") + (lambda* (#:key inputs outputs #:allow-other-keys) + (wrap-qt-program (assoc-ref outputs "out") "qtpass" + #:sh (search-input-file inputs "bin/bash")) #t)) (add-before 'check 'check-setup ;; Make Qt render "offscreen", required for tests. -- 2.31.1