anvil-editor: init at 0.4
[NixPkgs.git] / pkgs / applications / audio / deadbeef / wrapper.nix
blob66108deab1e32546775690a3a1df1175cfb3c502
1 { symlinkJoin, deadbeef, makeWrapper, plugins }:
3 symlinkJoin {
4   name = "deadbeef-with-plugins-${deadbeef.version}";
6   paths = [ deadbeef ] ++ plugins;
8   nativeBuildInputs = [ makeWrapper ];
10   postBuild = ''
11     wrapProgram $out/bin/deadbeef \
12       --set DEADBEEF_PLUGIN_DIR "$out/lib/deadbeef"
13   '';