35 lines
365 B
Nix
35 lines
365 B
Nix
{
|
|
bash,
|
|
faust,
|
|
gtk2,
|
|
jack2,
|
|
alsa-lib,
|
|
opencv,
|
|
libsndfile,
|
|
which,
|
|
}:
|
|
|
|
faust.wrapWithBuildEnv {
|
|
|
|
baseName = "faust2jack";
|
|
|
|
scripts = [
|
|
"faust2jack"
|
|
"faust2jackconsole"
|
|
];
|
|
|
|
buildInputs = [
|
|
bash # required for some scripts
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
gtk2
|
|
jack2
|
|
alsa-lib
|
|
opencv
|
|
libsndfile
|
|
which
|
|
];
|
|
|
|
}
|