-
Notifications
You must be signed in to change notification settings - Fork 1
/
module.nix
241 lines (212 loc) · 7.21 KB
/
module.nix
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
pkgs: {config, ...}:
with pkgs.lib; let
cfg = config.programs.yabridge;
in {
options.programs.yabridge = {
enable = mkEnableOption "Yabridge VST Emulation";
plugins = mkOption {
type = types.listOf types.package;
default = [];
description = "Paths to folders (or packages) which contain .vst and \
.vst3 plugins.";
};
nativePlugins = mkOption {
type = types.listOf types.package;
default = [];
description = "Paths to folders which contain plugins which will run \
natively on linux. They will be placed in the same folder as emulated \
VSTs.";
};
lv2 = mkOption {
type = types.listOf types.package;
default = [];
description = "Packages containing lv2 plugins.";
};
suppressUnmaintainedWarning = mkEnableOption "Stop the red warning/trace \
messages when evaluating unmaintained packages.";
suppressFreemiumWarning = mkEnableOption "Stop the red warning/trace \
messages when evaluating packages which require a paid account to \
unlock full features.";
extraPath = mkOption {
type = types.str;
default = "";
description = "An out-of-store path to append to yabridge configuration.\
Must be added to your DAW's VST search path.";
};
vstDirectory = mkOption {
type = types.str;
default = ".vst";
description = "Path relative to your home directory where vst plugins \
will be installed.";
};
lv2Directory = mkOption {
type = types.str;
default = ".lv2";
description = "Path relative to your home directory where lv2 plugins \
will be installed.";
};
package = mkOption {
type = types.package;
default = pkgs.yabridge;
description = "Nix package containing the yabridge binary.";
};
ctlPackage = mkOption {
type = types.package;
default = pkgs.yabridgectl;
description = "Nix package containing the yabridgectl binary.";
};
};
config = let
# binary to use
yabridgectl = "${cfg.ctlPackage}/bin/yabridgectl";
# warn functions for certain licenses n stuff
warnGeneral = package: cancel: tag: warningFunc: (
if
(builtins.hasAttr tag package
&& !cancel)
then
if (package.${tag})
then
(pkgs.lib.trivial.warn
(warningFunc package)
package)
else package
else package
);
warnDeprecated = package: (warnGeneral package
cfg.suppressUnmaintainedWarning "deprecated"
(deprecated: "${deprecated.name} is deprecated software and recieves no \
updates or support."));
warnDemo = package: (warnGeneral package
cfg.suppressFreemiumWarning "demo"
(demo: "${demo.name} is a paid product. You will only get the demo \
functionality. Using the full version of ${demo.name} installed via \
this flake is untested."));
warnings = [warnDeprecated warnDemo];
# nest all the warnings into one function
warn = package: (pkgs.lib.lists.foldr (func: folded: (func folded)) package warnings);
# functions to create commands for a package (and warn)
toCpCommand = package: "cp -r \"${warn package}\" \"$out/${package.name}\"";
toLnCommand = package: let
command = "ln -sf \"${warn package}\" \"$out/${package.name}\"";
in "echo ${command} && ${command}";
toYabridgeCommand = package: "${yabridgectl} add \"$out/${package.name}\"";
# list of strings (commands) created from packages
cpCommands = map toCpCommand cfg.plugins;
yabridgeCommands = map toYabridgeCommand cfg.plugins;
# edit yabridge config to explicitly include extraPath
escapedExtraPath =
pkgs.lib.strings.escape [
"/"
" "
"("
")"
"["
"]"
"{"
"}"
"\""
"\'"
]
cfg.extraPath;
patch =
if cfg.extraPath != ""
then ''
# try to replace line three (if there are very few plugins, ] is on same line)
# different versions use line 2 and 3 i think
sed -i "3s/\]$/,'${escapedExtraPath}']/" $out/config/yabridgectl/config.toml
sed -i "2s/\]$/,'${escapedExtraPath}']/" $out/config/yabridgectl/config.toml
# replace line containing only "]" with a new entry for extraPath
sed -i "s/^\]$/'${escapedExtraPath}']/" $out/config/yabridgectl/config.toml
''
else "";
# create script to setup directory and execute the copy commands and then
# sync with the yabridge commands.
scriptContents = ''
mkdir $out
# set all variables to have yabridge work in nix store
export WINEPREFIX=$out/wine
export XDG_CONFIG_HOME=$out/config
export HOME=$out/home
export RUST_BACKTRACE=full
${yabridgectl} set --path="${cfg.package}/lib"
# copy all vst plugin folders to out directory
${builtins.concatStringsSep "\n" cpCommands}
# add all the copied plugin folders to yabridge
${builtins.concatStringsSep "\n" yabridgeCommands}
${yabridgectl} sync
# adds extraPath
${patch}
#patch the contents of $out to have RPATHS that link to yabridge's lib
# ${pkgs.coreutils-full}/bin/chmod +w+r $out -R
# for file in $(${pkgs.findutils}/bin/find $out -print); do
# # do this unconditionally, patchelf doesnt err it just warns
# if [ -f $file ]; then
# # if shared library, patch with new rpath
# echo "running ${"${pkgs.elfutils.bin}/bin/eu-elfclassify --shared"} $file"
# if ${pkgs.elfutils.bin}/bin/eu-elfclassify --shared $file; then
# echo "found $file to be an elf shared lib"
# ${pkgs.patchelf}/bin/patchelf --add-rpath ${cfg.package}/lib $file
# fi
# fi
# done
'';
userYabridge =
pkgs.runCommandLocal
"yabridge-configuration"
{}
scriptContents;
# create a derivation which will copy all the native plugins into its
# working directory
nativePluginLnCommands = ''
mkdir $out
${
builtins.concatStringsSep "\n"
(map toLnCommand cfg.nativePlugins)
}
'';
nativePlugins =
pkgs.runCommandLocal
"native-plugins-combined"
{}
nativePluginLnCommands;
# same thing but lv2 plugins
lv2LnCommands = ''
mkdir $out
${
builtins.concatStringsSep "\n"
(map toLnCommand cfg.lv2)
}
'';
lv2Plugins =
pkgs.runCommandLocal
"lv2-plugins-combined"
{}
lv2LnCommands;
in
mkIf cfg.enable {
home.packages = [cfg.ctlPackage];
home.file = {
"${cfg.vstDirectory}/yabridge" = {
source = "${userYabridge}/home/.vst3/yabridge";
recursive = true;
};
"${cfg.vstDirectory}/yabridge-vst2" = {
source = "${userYabridge}/home/.vst/yabridge";
recursive = true;
};
"${cfg.vstDirectory}/native" = {
source = nativePlugins;
recursive = true;
};
"${cfg.lv2Directory}" = {
source = lv2Plugins;
recursive = true;
};
".config/yabridgectl" = {
source = "${userYabridge}/config/yabridgectl";
recursive = true;
};
};
};
}