Commit ffb470ec authored by Alissa Ceres's avatar Alissa Ceres Committed by Artturin
Browse files

raysession: Add bash to buildInputs

Needed since all executables are bash scripts that need their shebang patched.
parent 4a5817c4
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
{ lib, fetchurl, buildPythonApplication, libjack2, pydbus, pyliblo, pyqt5, qttools, which }:
{ lib, fetchurl, buildPythonApplication, libjack2, pydbus, pyliblo, pyqt5, qttools, which, bash }:

buildPythonApplication rec {
  pname = "raysession";
@@ -23,7 +23,7 @@ buildPythonApplication rec {
    qttools # lrelease to build translations.
    which   # which to find lrelease.
  ];
  buildInputs = [ libjack2 ];
  buildInputs = [ libjack2 bash ];
  propagatedBuildInputs = [ pydbus pyliblo pyqt5 ];

  dontWrapQtApps = true; # The program is a python script.