mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
17 lines
345 B
Nix
17 lines
345 B
Nix
{ symlinkJoin, puredata, makeWrapper, plugins }:
|
|
|
|
let
|
|
puredataFlags = map (x: "-path ${x}/") plugins;
|
|
in symlinkJoin {
|
|
name = "puredata-with-plugins-${puredata.version}";
|
|
|
|
paths = [ puredata ] ++ plugins;
|
|
|
|
buildInputs = [ makeWrapper ];
|
|
|
|
postBuild = ''
|
|
wrapProgram $out/bin/pd \
|
|
--add-flags "${toString puredataFlags}"
|
|
'';
|
|
}
|