texstudio: 4.8.4 -> 4.8.5 (#365076)
[NixPkgs.git] / pkgs / applications / audio / deadbeef / wrapper.nix
blobc3074e7b2e0762cf3f54124b8388689ded04b1c4
2   symlinkJoin,
3   deadbeef,
4   makeWrapper,
5   plugins,
6 }:
8 symlinkJoin {
9   name = "deadbeef-with-plugins-${deadbeef.version}";
11   paths = [ deadbeef ] ++ plugins;
13   nativeBuildInputs = [ makeWrapper ];
15   postBuild = ''
16     wrapProgram $out/bin/deadbeef \
17       --set DEADBEEF_PLUGIN_DIR "$out/lib/deadbeef"
18   '';