tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
supercollider: use bash from nixpkgs for popen
Isidor Zeuner
2 years ago
6d9c572b
4c035af9
+5
-1
1 changed file
expand all
collapse all
unified
split
pkgs
development
interpreters
supercollider
default.nix
+5
-1
pkgs/development/interpreters/supercollider/default.nix
···
1
-
{ lib, stdenv, mkDerivation, fetchurl, cmake
2
, pkg-config, alsa-lib, libjack2, libsndfile, fftw
3
, curl, gcc, libXt, qtbase, qttools, qtwebengine
4
, readline, qtwebsockets, useSCEL ? false, emacs
···
19
# add support for SC_DATA_DIR and SC_PLUGIN_DIR env vars to override compile-time values
20
./supercollider-3.12.0-env-dirs.patch
21
];
0
0
0
0
22
23
strictDeps = true;
24
···
1
+
{ lib, stdenv, mkDerivation, fetchurl, cmake, runtimeShell
2
, pkg-config, alsa-lib, libjack2, libsndfile, fftw
3
, curl, gcc, libXt, qtbase, qttools, qtwebengine
4
, readline, qtwebsockets, useSCEL ? false, emacs
···
19
# add support for SC_DATA_DIR and SC_PLUGIN_DIR env vars to override compile-time values
20
./supercollider-3.12.0-env-dirs.patch
21
];
22
+
23
+
postPatch = ''
24
+
substituteInPlace common/sc_popen.cpp --replace '/bin/sh' '${runtimeShell}'
25
+
'';
26
27
strictDeps = true;
28