Puredata

From NixOS Wiki
Revision as of 21:58, 29 May 2020 by imported>Raboof (show how to use puredata-with-plugins)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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"`