From 23486d123442d63aac7b54ec0c4d0b4786237762 Mon Sep 17 00:00:00 2001 From: Maxime Devos Date: Sat, 5 Jun 2021 11:04:21 +0200 Subject: [PATCH 7/8] gnu: openshot: Set #:sh argument of 'wrap-qt-program'. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/video.scm (openshot)[arguments]<#:phases>{wrap-program}: Set #:sh argument of ‘wrap-qt-program’. --- gnu/packages/video.scm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm index 4b1d2540e4..250ca944aa 100644 --- a/gnu/packages/video.scm +++ b/gnu/packages/video.scm @@ -4560,9 +4560,10 @@ API. It includes bindings for Python, Ruby, and other languages.") (setenv "HOME" "/tmp") #t)) (add-after 'install 'wrap-program - (lambda* (#:key outputs #:allow-other-keys) + (lambda* (#:key inputs outputs #:allow-other-keys) (let ((out (assoc-ref outputs "out"))) - (wrap-qt-program out "openshot-qt")) + (wrap-qt-program out "openshot-qt" + #:sh (search-input-file "bin/bash"))) #t))))) (home-page "https://www.openshot.org/") (synopsis "Video editor") -- 2.31.1