Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

35 lines
365 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
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
];
}