3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #227970 from cerealiss/fix/raysession

This commit is contained in:
Artturi 2023-04-28 16:16:53 +03:00 committed by GitHub
commit 296b3e1e04
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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 {
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.