depot/third_party/nixpkgs/pkgs/applications/audio/faust/faust2jack.nix
Default email b087c617d3 Project import generated by Copybara.
GitOrigin-RevId: bd017760509492a1774b0ea2fc5c1bbb4b2d98af
2020-10-20 19:27:49 +02:00

28 lines
293 B
Nix

{ faust
, gtk2
, jack2Full
, alsaLib
, opencv
, libsndfile
, which
}:
faust.wrapWithBuildEnv {
baseName = "faust2jack";
scripts = [
"faust2jack"
"faust2jackconsole"
];
propagatedBuildInputs = [
gtk2
jack2Full
alsaLib
opencv
libsndfile
which
];
}