about summary refs log tree commit diff
path: root/pkgs/applications/audio/raysession
diff options
context:
space:
mode:
authorAlissa Ceres <aqh+gh@posteo.net>2023-04-18 04:30:03 +0200
committerArtturin <Artturin@artturin.com>2023-04-28 14:49:40 +0300
commitffb470ec45671f97e57a29d2e8c852ccf589ce47 (patch)
tree75f3fc6ef713d8ae3bd1963e58e2ab3e98249e24 /pkgs/applications/audio/raysession
parent4a5817c44a62c415ce3ec24ff832d12108805012 (diff)
downloadnixlib-ffb470ec45671f97e57a29d2e8c852ccf589ce47.tar
nixlib-ffb470ec45671f97e57a29d2e8c852ccf589ce47.tar.gz
nixlib-ffb470ec45671f97e57a29d2e8c852ccf589ce47.tar.bz2
nixlib-ffb470ec45671f97e57a29d2e8c852ccf589ce47.tar.lz
nixlib-ffb470ec45671f97e57a29d2e8c852ccf589ce47.tar.xz
nixlib-ffb470ec45671f97e57a29d2e8c852ccf589ce47.tar.zst
nixlib-ffb470ec45671f97e57a29d2e8c852ccf589ce47.zip
raysession: Add bash to buildInputs
Needed since all executables are bash scripts that need their shebang patched.
Diffstat (limited to 'pkgs/applications/audio/raysession')
-rw-r--r--pkgs/applications/audio/raysession/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/audio/raysession/default.nix b/pkgs/applications/audio/raysession/default.nix
index 2cae90bdd8d0..279d0f85b218 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.