nixpkgs/pkgs/applications/audio/faust/faust2jaqt.nix
Bart Brouns bbe7624175
faust2: 2.20.2 -> unstable-2020-03-20 (#82650)
The latest release has a bug that makes it unable
to compile all of its own libraries:

https://github.com/grame-cncm/faust/issues/406
2020-03-26 07:32:01 +00:00

27 lines
268 B
Nix

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