1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
|
{
lib,
stdenv,
fetchFromGitHub,
fetchpatch,
cmake,
libsndfile,
libsamplerate,
flex,
bison,
boost,
gettext,
portaudio,
alsa-lib ? null,
libpulseaudio ? null,
libjack2 ? null,
liblo ? null,
ladspa-sdk ? null,
fluidsynth ? null,
# , gmm ? null # opcodes don't build with gmm 5.1
eigen ? null,
curl ? null,
tcltk ? null,
fltk ? null,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "csound";
version = "7.0.0-beta.10";
hardeningDisable = [ "format" ];
src = fetchFromGitHub {
owner = "csound";
repo = "csound";
tag = finalAttrs.version;
hash = "sha256-l3dSVt5rgyj98ZCZltqKAJx/0Afl4R03flLXBcivtwg=";
};
cmakeFlags = [
"-DBUILD_CSOUND_AC=0"
] # fails to find Score.hpp
++ lib.optional stdenv.hostPlatform.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";
nativeBuildInputs = [
cmake
flex
bison
gettext
];
buildInputs = [
libsndfile
libsamplerate
boost
]
++ lib.optionals stdenv.hostPlatform.isDarwin [
portaudio
]
++ lib.optionals stdenv.hostPlatform.isLinux (
builtins.filter (optional: optional != null) [
alsa-lib
libpulseaudio
libjack2
liblo
ladspa-sdk
fluidsynth
eigen
curl
tcltk
fltk
]
);
postInstall = lib.optionalString stdenv.hostPlatform.isDarwin ''
mkdir -p $out/Library/Frameworks
ln -s $out/lib/CsoundLib64.framework $out/Library/Frameworks
'';
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 = "https://csound.com/";
license = lib.licenses.lgpl21Plus;
maintainers = [ ];
platforms = lib.platforms.unix;
broken = stdenv.hostPlatform.isDarwin;
};
})
|