nixpkgs/pkgs/applications/audio/faust/faust2jaqt.nix
2020-05-05 13:45:13 +03:00

27 lines
270 B
Nix

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