nixpkgs/pkgs/applications/audio/faust/faust2jaqt.nix
2015-03-23 12:01:54 -05:00

23 lines
214 B
Nix

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