mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 22:50:49 +00:00
13 lines
134 B
Nix
13 lines
134 B
Nix
|
{ boost
|
||
|
, faust
|
||
|
, ladspaH
|
||
|
}:
|
||
|
|
||
|
faust.wrapWithBuildEnv {
|
||
|
|
||
|
baseName = "faust2ladspa";
|
||
|
|
||
|
propagatedBuildInputs = [ boost ladspaH ];
|
||
|
|
||
|
}
|