mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-18 13:19:10 +03:00
raysession: Add bash to buildInputs
Needed since all executables are bash scripts that need their shebang patched.
This commit is contained in:
parent
4a5817c44a
commit
ffb470ec45
@ -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.
|
||||||
|
Loading…
Reference in New Issue
Block a user