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