1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-14 16:46:09 +00:00
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
];
}