supercollider: use bash from nixpkgs for popen

+5 -1
+5 -1
pkgs/development/interpreters/supercollider/default.nix
··· 1 - { lib, stdenv, mkDerivation, fetchurl, cmake 1 + { lib, stdenv, mkDerivation, fetchurl, cmake, runtimeShell 2 2 , pkg-config, alsa-lib, libjack2, libsndfile, fftw 3 3 , curl, gcc, libXt, qtbase, qttools, qtwebengine 4 4 , readline, qtwebsockets, useSCEL ? false, emacs ··· 19 19 # add support for SC_DATA_DIR and SC_PLUGIN_DIR env vars to override compile-time values 20 20 ./supercollider-3.12.0-env-dirs.patch 21 21 ]; 22 + 23 + postPatch = '' 24 + substituteInPlace common/sc_popen.cpp --replace '/bin/sh' '${runtimeShell}' 25 + ''; 22 26 23 27 strictDeps = true; 24 28