Puredata: Difference between revisions
Appearance
imported>Raboof show how to use puredata-with-plugins |
mNo edit summary |
||
| Line 14: | Line 14: | ||
nix-shell shell.nix --run "pd -lib zexy"` | nix-shell shell.nix --run "pd -lib zexy"` | ||
[[Category:nix]] | |||
Latest revision as of 20:38, 24 April 2024
If you want to use packaged plugins, you can use the 'puredata-with-plugins' wrapper:
Create a shell.nix with:
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = [
(pkgs.puredata-with-plugins [ pkgs.zexy ])
];
}
... and you can
nix-shell shell.nix --run "pd -lib zexy"`