repo.or.cz
/
NixPkgs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
texstudio: 4.8.4 -> 4.8.5 (#365076)
[NixPkgs.git]
/
pkgs
/
applications
/
audio
/
deadbeef
/
wrapper.nix
blob
c3074e7b2e0762cf3f54124b8388689ded04b1c4
1
{
2
symlinkJoin,
3
deadbeef,
4
makeWrapper,
5
plugins,
6
}:
7
8
symlinkJoin {
9
name = "deadbeef-with-plugins-${deadbeef.version}";
10
11
paths = [ deadbeef ] ++ plugins;
12
13
nativeBuildInputs = [ makeWrapper ];
14
15
postBuild = ''
16
wrapProgram $out/bin/deadbeef \
17
--set DEADBEEF_PLUGIN_DIR "$out/lib/deadbeef"
18
'';
19
}