nixpkgs/pkgs/applications/audio/faust/faust2jaqt.nix
2020-08-27 17:08:08 +02:00

29 lines
292 B
Nix

{ faust
, jack2Full
, opencv2
, qt4
, libsndfile
, alsaLib
, which
}:
faust.wrapWithBuildEnv {
baseName = "faust2jaqt";
scripts = [
"faust2jaqt"
"faust2jackserver"
];
propagatedBuildInputs = [
jack2Full
opencv2
qt4
libsndfile
alsaLib
which
];
}