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
|
{
lib,
stdenv,
fetchFromGitHub,
fetchpatch,
cmake,
pkg-config,
which,
alsa-lib,
curl,
faust,
flac,
gnutls,
libjack2,
libmicrohttpd,
libmpg123,
libogg,
libopus,
libsndfile,
libtasn1,
libvorbis,
libxcb,
llvm,
p11-kit,
qrencode,
qt5,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "faustlive";
version = "2.5.19";
src = fetchFromGitHub {
owner = "grame-cncm";
repo = "faustlive";
tag = finalAttrs.version;
hash = "sha256-IBMgesMkT+0Oh1TjHa+bcSp6YziLNBtNPoUCzbyhMFI=";
fetchSubmodules = true;
};
strictDeps = true;
nativeBuildInputs = [
cmake
faust
llvm
pkg-config
qt5.wrapQtAppsHook
which
];
buildInputs = [
alsa-lib
curl
faust
flac
gnutls
libjack2
libmicrohttpd
libmpg123
libogg
libopus
libsndfile
libtasn1
libvorbis
libxcb
llvm
p11-kit
qrencode
qt5.qtbase
];
cmakeFlags = [
"-DCMAKE_BUILD_WITH_INSTALL_RPATH=ON"
];
postPatch = "cd Build";
meta = {
description = "Standalone just-in-time Faust compiler";
mainProgram = "FaustLive";
longDescription = ''
FaustLive is a standalone just-in-time Faust compiler. It tries to bring
together the convenience of a standalone interpreted language with the
efficiency of a compiled language. It's ideal for fast prototyping.
'';
homepage = "https://faust.grame.fr/";
license = lib.licenses.gpl3;
maintainers = with lib.maintainers; [ magnetophon ];
};
})
|