supercollider: added emacs support

This commit is contained in:
Henry Till 2014-05-10 22:18:03 -04:00
parent cb7c920e24
commit 6223cbd7a8
2 changed files with 14 additions and 10 deletions

View file

@ -1,9 +1,12 @@
{ stdenv, fetchurl, cmake, pkgconfig
, jackaudio, libsndfile, fftw, curl
, libXt, qt
, libXt, qt, readline
, useSCEL ? false, emacs
}:
let optional = stdenv.lib.optional; in
stdenv.mkDerivation rec {
stdenv.mkDerivation rec {
name = "supercollider-3.6.6";
meta = {
@ -24,15 +27,14 @@ stdenv.mkDerivation rec {
--replace Q_WS_X11 Q_GTK_STYLE
'';
cmakeFlags = [
"-DSC_WII=OFF"
"-DSC_EL=OFF"
];
cmakeFlags = ''
-DSC_WII=OFF
-DSC_EL=${if useSCEL then "ON" else "OFF"}
'';
nativeBuildInputs = [ cmake pkgconfig ];
buildInputs = [
jackaudio libsndfile fftw curl
libXt qt
];
buildInputs = [
jackaudio libsndfile fftw curl libXt qt readline ]
++ optional useSCEL emacs;
}

View file

@ -3544,6 +3544,8 @@ let
fftw = fftwSinglePrec;
};
supercollider_scel = supercollider.override { useSCEL = true; };
sysPerl = callPackage ../development/interpreters/perl/sys-perl { };
tcl = callPackage ../development/interpreters/tcl { };