Merge pull request #16344 from matthiasbeyer/fix-supercollider

Fix supercollider
This commit is contained in:
Joachim Schiele 2016-07-07 17:09:46 +02:00 committed by GitHub
commit 9054f3f83e
2 changed files with 10 additions and 8 deletions

View file

@ -3,10 +3,12 @@
, libXt, qt, readline
, useSCEL ? false, emacs
}:
let optional = stdenv.lib.optional; in
stdenv.mkDerivation rec {
let optional = stdenv.lib.optional;
ljack2 = libjack2.override { gcc = gcc; };
in
stdenv.mkDerivation rec {
name = "supercollider-3.6.6";
meta = {
@ -29,12 +31,12 @@ stdenv.mkDerivation rec {
cmakeFlags = ''
-DSC_WII=OFF
-DSC_EL=${if useSCEL then "ON" else "OFF"}
-DSC_EL=${if useSCEL then "ON" else "OFF"}
'';
nativeBuildInputs = [ cmake pkgconfig ];
buildInputs = [
gcc libjack2 libsndfile fftw curl libXt qt readline ]
buildInputs = [
gcc ljack2 libsndfile fftw curl libXt qt readline ]
++ optional useSCEL emacs;
}

View file

@ -1,5 +1,5 @@
{ stdenv, fetchFromGitHub, pkgconfig, python, makeWrapper
, bash, libsamplerate, libsndfile, readline
, bash, libsamplerate, libsndfile, readline, gcc
# Optional Dependencies
, dbus ? null, pythonDBus ? null, libffado ? null, alsaLib ? null
@ -33,7 +33,7 @@ stdenv.mkDerivation rec {
};
nativeBuildInputs = [ pkgconfig python makeWrapper ];
buildInputs = [
buildInputs = [ gcc
python
libsamplerate libsndfile readline