nixpkgs/pkgs/applications/audio/faust/faust2jaqt.nix
Bart Brouns 5461c5f633 faust2jaqt: remove opencv2
It's marked broken and it seems it wasn't needed in here in the first place.
5e68d203f3
2020-10-20 14:02:30 +02:00

27 lines
270 B
Nix

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