29 lines
287 B
Nix
29 lines
287 B
Nix
|
{ faust
|
||
|
, gtk2
|
||
|
, jack2
|
||
|
, alsa-lib
|
||
|
, opencv
|
||
|
, libsndfile
|
||
|
, which
|
||
|
}:
|
||
|
|
||
|
faust.wrapWithBuildEnv {
|
||
|
|
||
|
baseName = "faust2jack";
|
||
|
|
||
|
scripts = [
|
||
|
"faust2jack"
|
||
|
"faust2jackconsole"
|
||
|
];
|
||
|
|
||
|
propagatedBuildInputs = [
|
||
|
gtk2
|
||
|
jack2
|
||
|
alsa-lib
|
||
|
opencv
|
||
|
libsndfile
|
||
|
which
|
||
|
];
|
||
|
|
||
|
}
|