2012-10-18 02:13:21 +01:00
|
|
|
{ stdenv, fetchurl, cmake, libsndfile, flex, bison
|
|
|
|
, alsaLib ? null
|
2015-05-27 20:42:15 +01:00
|
|
|
, libpulseaudio ? null
|
2012-10-18 02:13:21 +01:00
|
|
|
, tcltk ? null
|
|
|
|
|
|
|
|
# maybe csound can be compiled with support for those, see configure output
|
|
|
|
# , ladspa ? null
|
|
|
|
# , fluidsynth ? null
|
|
|
|
# , jack ? null
|
|
|
|
# , gmm ? null
|
|
|
|
# , wiiuse ? null
|
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2014-11-18 20:31:08 +00:00
|
|
|
name = "csound-6.03.2";
|
2012-10-18 02:13:21 +01:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
src = fetchurl {
|
2014-11-18 20:31:08 +00:00
|
|
|
url = mirror://sourceforge/csound/Csound6.03.2.tar.gz;
|
|
|
|
sha256 = "0w6ij57dbfjljpf05bb9r91jphwaq1v63rh0713vl2n11d73dy7m";
|
2012-10-18 02:13:21 +01:00
|
|
|
};
|
|
|
|
|
2015-05-27 20:42:15 +01:00
|
|
|
buildInputs = [ cmake libsndfile flex bison alsaLib libpulseaudio tcltk ];
|
2012-10-18 02:13:21 +01:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "sound design, audio synthesis, and signal processing system, providing facilities for music composition and performance on all major operating systems and platforms";
|
|
|
|
homepage = http://www.csounds.com/;
|
|
|
|
license = stdenv.lib.licenses.gpl2;
|
|
|
|
maintainers = [stdenv.lib.maintainers.marcweber];
|
|
|
|
platforms = stdenv.lib.platforms.linux;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|