From ffb470ec45671f97e57a29d2e8c852ccf589ce47 Mon Sep 17 00:00:00 2001 From: Alissa Ceres Date: Tue, 18 Apr 2023 04:30:03 +0200 Subject: [PATCH] raysession: Add bash to buildInputs Needed since all executables are bash scripts that need their shebang patched. --- pkgs/applications/audio/raysession/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/audio/raysession/default.nix b/pkgs/applications/audio/raysession/default.nix index 2cae90bdd8d..279d0f85b21 100644 --- a/pkgs/applications/audio/raysession/default.nix +++ b/pkgs/applications/audio/raysession/default.nix @@ -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.