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
|
{
lib,
stdenv,
fetchFromGitHub,
alsa-lib,
freetype,
ftgl,
libjack2,
libx11,
lv2,
libGLU,
libGL,
pkg-config,
ttf_bitstream_vera,
nix-update-script,
}:
let
version = "0.8.17";
in
stdenv.mkDerivation {
pname = "setbfree";
inherit version;
src = fetchFromGitHub {
owner = "pantherb";
repo = "setBfree";
rev = "v${version}";
hash = "sha256-MjbgN0WIZtoFjEtjYa0MkTtaub/oNSxQ0i8EedBbTGA=";
};
postPatch = ''
substituteInPlace common.mak \
--replace /usr/local "$out" \
--replace /usr/share/fonts/truetype/ttf-bitstream-vera "${ttf_bitstream_vera}/share/fonts/truetype"
'';
nativeBuildInputs = [ pkg-config ];
buildInputs = [
alsa-lib
freetype
ftgl
libjack2
libx11
lv2
libGLU
libGL
ttf_bitstream_vera
];
doInstallCheck = true;
installCheckPhase = ''
(
set -x;
test -e $out/bin/setBfreeUI
)
'';
enableParallelBuilding = true;
passthru.updateScript = nix-update-script { };
meta = {
description = "DSP tonewheel organ emulator";
homepage = "https://setbfree.org";
license = lib.licenses.gpl2;
platforms = [
"x86_64-linux"
"i686-linux"
]; # fails on ARM and Darwin
broken = stdenv.hostPlatform.isAarch64;
maintainers = [ lib.maintainers.l1npengtul ];
};
}
|