raysession: Add bash to buildInputs

Needed since all executables are bash scripts that need their shebang patched.
This commit is contained in:
Alissa Ceres 2023-04-18 04:30:03 +02:00 committed by Artturin
parent 4a5817c44a
commit ffb470ec45

View file

@ -1,4 +1,4 @@
{ lib, fetchurl, buildPythonApplication, libjack2, pydbus, pyliblo, pyqt5, qttools, which }: { lib, fetchurl, buildPythonApplication, libjack2, pydbus, pyliblo, pyqt5, qttools, which, bash }:
buildPythonApplication rec { buildPythonApplication rec {
pname = "raysession"; pname = "raysession";
@ -23,7 +23,7 @@ buildPythonApplication rec {
qttools # lrelease to build translations. qttools # lrelease to build translations.
which # which to find lrelease. which # which to find lrelease.
]; ];
buildInputs = [ libjack2 ]; buildInputs = [ libjack2 bash ];
propagatedBuildInputs = [ pydbus pyliblo pyqt5 ]; propagatedBuildInputs = [ pydbus pyliblo pyqt5 ];
dontWrapQtApps = true; # The program is a python script. dontWrapQtApps = true; # The program is a python script.