nixpkgs/pkgs/applications/audio/faust/faust2jaqt.nix
2018-01-23 00:42:37 +01:00

25 lines
250 B
Nix

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