depot/third_party/nixpkgs/pkgs/applications/audio/faust/faust2jaqt.nix
Default email 66604c92c1 Project import generated by Copybara.
GitOrigin-RevId: 32b8ed738096bafb4cdb7f70347a0f63f9f40151
2020-05-15 23:57:56 +02:00

26 lines
270 B
Nix

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