depot/third_party/nixpkgs/pkgs/applications/audio/faust/faust2jaqt.nix
Default email 58f8944c92 Project import generated by Copybara.
GitOrigin-RevId: 5aba0fe9766a7201a336249fd6cb76e0d7ba2faf
2020-09-24 23:45:31 -05:00

28 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
];
}