Audio production: Difference between revisions
imported>Deifactor document how to install VSTs |
imported>Deifactor update to be more generic about audio production |
||
Line 1: | Line 1: | ||
[https://github.com/musnix/musnix Musnix] is useful for things like setting up ulimit values automatically. | |||
== Plugins not found == | |||
Due to NixOS not using FHS paths, many DAWs will not know where to look for VSTs and other plugins. Musnix fixes this; if you don't want to use it, you can solve this by setting | |||
<syntaxhighlight lang="nix"> | |||
environment.variables = let | |||
makePluginPath = format: | |||
(makeSearchPath format [ | |||
"$HOME/.nix-profile/lib" | |||
"/run/current-system/sw/lib" | |||
"/etc/profiles/per-user/$USER/lib" | |||
]) | |||
+ ":$HOME/.${format}"; | |||
in { | |||
DSSI_PATH = makePluginPath "dssi"; | |||
LADSPA_PATH = makePluginPath "ladspa"; | |||
LV2_PATH = makePluginPath "lv2"; | |||
LXVST_PATH = makePluginPath "lxvst"; | |||
VST_PATH = makePluginPath "vst"; | |||
VST3_PATH = makePluginPath "vst3"; | |||
}; | |||
</syntaxhighlight> | |||
Some programs may not support those and may require other means of setting VST paths. | |||
== Packaging plugins == | |||
Source-available plugins can be packaged like any other library; note that the output files should wind up in <code>$out/lib/vst3</code>. | |||
If the plugin is only available as a binary, you may need to use [[Packaging/Binaries|the advice on packaging binaries]] to help. Since many plugins will not be accessible via the standard fetchers, you can always fall back on including the plugin using <code>src = ./plugin.zip</code>; note that if you're using flakes and don't want to commit the plugin to Git (an especially bad idea if your config is public!), you can use requireFile and manually add files to the store. To do this, run <code>nix-hash --flat --type sha256 plugin.zip</code>, take the output, and use it in a derivation like so: | |||
<syntaxhighlight lang="nix"> | <syntaxhighlight lang="nix"> | ||
src = requireFile { | |||
message = "run nix-store add-file"; | |||
name = "plugin.zip"; | |||
sha256 = | |||
"68f3c7e845f3d7a5b44a83adeb6e34ef221503df00e7964f7d5a1f132a252d13"; | |||
}; | |||
</syntaxhighlight> | </syntaxhighlight> | ||
Then run <code>nix-store add-file plugin.zip</code>. | |||
As an example, a working package for Vital looks like | |||
<syntaxhighlight lang="nix"> | <syntaxhighlight lang="nix"> | ||
stdenv.mkDerivation rec { | |||
pname = "vital"; | |||
version = "1.5.5"; | |||
src = requireFile { | |||
message = "run nix-store add-file VitalInstaller.zip"; | |||
name = "VitalInstaller.zip"; | |||
# this may be different for you! | |||
sha256 = | |||
"68f3c7e845f3d7a5b44a83adeb6e34ef221503df00e7964f7d5a1f132a252d13"; | |||
}; | |||
nativeBuildInputs = [ makeWrapper unzip ]; | |||
buildInputs = [ | |||
alsa-lib | |||
freetype | |||
libglvnd | |||
stdenv.cc.cc.lib | |||
xorg.libICE | |||
xorg.libSM | xorg.libSM | ||
xorg. | xorg.libX11 | ||
xorg.libXext | xorg.libXext | ||
]; | ]; | ||
unpackPhase = '' | |||
unzip $src | |||
''; | |||
installPhase = '' | |||
mkdir -p $out | |||
cp -r VitalInstaller/lib $out/lib | |||
''; | |||
postFixup = '' | |||
for file in \ | |||
$out/lib/clap/Vital.clap \ | |||
$out/lib/vst/Vital.so \ | |||
$out/lib/vst3/Vital.vst3/Contents/x86_64-linux/Vital.so | |||
do | |||
patchelf --set-rpath "${lib.makeLibraryPath buildInputs}" $file | |||
done | |||
''; | |||
}; | |||
</syntaxhighlight> | </syntaxhighlight> |