2017-05-29 20:39:40 +00:00
|
|
|
{ stdenv, fetchFromGitHub, cmake, libsndfile, libsamplerate, flex, bison, boost, gettext
|
2012-10-18 01:13:21 +00:00
|
|
|
, alsaLib ? null
|
2015-05-27 19:42:15 +00:00
|
|
|
, libpulseaudio ? null
|
2017-05-29 20:39:40 +00:00
|
|
|
, libjack2 ? null
|
2017-05-02 20:13:27 +00:00
|
|
|
, liblo ? null
|
2017-05-29 20:39:40 +00:00
|
|
|
, ladspa-sdk ? null
|
|
|
|
, fluidsynth ? null
|
|
|
|
# , gmm ? null # opcodes don't build with gmm 5.1
|
|
|
|
, eigen ? null
|
|
|
|
, curl ? null
|
|
|
|
, tcltk ? null
|
|
|
|
, fltk ? null
|
2012-10-18 01:13:21 +00:00
|
|
|
}:
|
|
|
|
|
2017-03-11 22:40:29 +00:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "csound-6.08.1";
|
|
|
|
version = "6.08.1";
|
2012-10-18 01:13:21 +00:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2016-02-26 17:38:15 +00:00
|
|
|
hardeningDisable = [ "format" ];
|
2016-02-07 20:40:46 +00:00
|
|
|
|
2017-03-11 22:40:29 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "csound";
|
|
|
|
repo = "csound";
|
|
|
|
rev = version;
|
|
|
|
sha256 = "03xnva17sw35ga3n96x1zdfgw913dga1hccly85wzfn0kxz4rld9";
|
2012-10-18 01:13:21 +00:00
|
|
|
};
|
|
|
|
|
2017-05-29 20:39:40 +00:00
|
|
|
cmakeFlags = [ "-DBUILD_CSOUND_AC=0" ] # fails to find Score.hpp
|
|
|
|
++ stdenv.lib.optional (libjack2 != null) "-DJACK_HEADER=${libjack2}/include/jack/jack.h";
|
|
|
|
|
|
|
|
nativeBuildInputs = [ cmake flex bison gettext ];
|
|
|
|
buildInputs = [ libsndfile libsamplerate boost ]
|
|
|
|
++ builtins.filter (optional: optional != null) [
|
|
|
|
alsaLib libpulseaudio libjack2
|
|
|
|
liblo ladspa-sdk fluidsynth eigen
|
|
|
|
curl tcltk fltk ];
|
2012-10-18 01:13:21 +00:00
|
|
|
|
2017-03-11 22:40:29 +00:00
|
|
|
meta = with stdenv.lib; {
|
2016-06-20 10:53:46 +00:00
|
|
|
description = "Sound design, audio synthesis, and signal processing system, providing facilities for music composition and performance on all major operating systems and platforms";
|
2012-10-18 01:13:21 +00:00
|
|
|
homepage = http://www.csounds.com/;
|
2017-03-11 22:40:29 +00:00
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = [maintainers.marcweber];
|
|
|
|
platforms = platforms.linux;
|
2012-10-18 01:13:21 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|