2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, cmake, libsndfile, libsamplerate, flex, bison, boost, gettext
|
2022-05-10 10:34:33 +00:00
|
|
|
, Accelerate
|
|
|
|
, AudioUnit
|
|
|
|
, CoreAudio
|
|
|
|
, CoreMIDI
|
2022-10-01 16:31:50 +00:00
|
|
|
, portaudio
|
2021-06-10 02:57:09 +00:00
|
|
|
, alsa-lib ? 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 {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "csound";
|
2022-11-25 10:54:09 +00:00
|
|
|
version = "6.18.1";
|
2012-10-18 01:13:21 +00:00
|
|
|
|
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;
|
2022-11-25 10:54:09 +00:00
|
|
|
sha256 = "sha256-O7s92N54+zIl07eIdK/puoSve/qJ3O01fTh0TP+VdZA=";
|
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
|
2023-05-15 13:29:44 +00:00
|
|
|
++ lib.optional stdenv.isDarwin "-DCS_FRAMEWORK_DEST=${placeholder "out"}/lib"
|
|
|
|
# Ignore gettext in CMAKE_PREFIX_PATH on cross to prevent find_program picking up the wrong gettext
|
|
|
|
++ lib.optional (stdenv.hostPlatform != stdenv.buildPlatform) "-DCMAKE_IGNORE_PATH=${lib.getBin gettext}/bin";
|
2017-05-29 20:39:40 +00:00
|
|
|
|
|
|
|
nativeBuildInputs = [ cmake flex bison gettext ];
|
|
|
|
buildInputs = [ libsndfile libsamplerate boost ]
|
2022-05-10 10:34:33 +00:00
|
|
|
++ lib.optionals stdenv.isDarwin [
|
2022-10-01 16:31:50 +00:00
|
|
|
Accelerate AudioUnit CoreAudio CoreMIDI portaudio
|
2022-05-10 10:34:33 +00:00
|
|
|
] ++ lib.optionals stdenv.isLinux (builtins.filter (optional: optional != null) [
|
2021-06-10 02:57:09 +00:00
|
|
|
alsa-lib libpulseaudio libjack2
|
2017-05-29 20:39:40 +00:00
|
|
|
liblo ladspa-sdk fluidsynth eigen
|
2022-05-10 10:34:33 +00:00
|
|
|
curl tcltk fltk
|
|
|
|
]);
|
|
|
|
|
|
|
|
postInstall = lib.optional stdenv.isDarwin ''
|
|
|
|
mkdir -p $out/Library/Frameworks
|
|
|
|
ln -s $out/lib/CsoundLib64.framework $out/Library/Frameworks
|
|
|
|
'';
|
2012-10-18 01:13:21 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with 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";
|
2022-03-06 10:34:58 +00:00
|
|
|
homepage = "https://csound.com/";
|
|
|
|
license = licenses.lgpl21Plus;
|
2017-03-11 22:40:29 +00:00
|
|
|
maintainers = [maintainers.marcweber];
|
2022-05-10 10:34:33 +00:00
|
|
|
platforms = platforms.unix;
|
2012-10-18 01:13:21 +00:00
|
|
|
};
|
|
|
|
}
|