nixpkgs/pkgs/applications/audio/faust/faust2jaqt.nix
2015-06-27 00:17:52 -07:00

23 lines
222 B
Nix

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