27 lines
268 B
Nix
27 lines
268 B
Nix
|
{ faust
|
||
|
, jack2Full
|
||
|
, opencv
|
||
|
, qt4
|
||
|
, libsndfile
|
||
|
, which
|
||
|
}:
|
||
|
|
||
|
faust.wrapWithBuildEnv {
|
||
|
|
||
|
baseName = "faust2jaqt";
|
||
|
|
||
|
scripts = [
|
||
|
"faust2jaqt"
|
||
|
"faust2jackserver"
|
||
|
];
|
||
|
|
||
|
propagatedBuildInputs = [
|
||
|
jack2Full
|
||
|
opencv
|
||
|
qt4
|
||
|
libsndfile
|
||
|
which
|
||
|
];
|
||
|
|
||
|
}
|