nixpkgs/pkgs/applications/audio/faust/faust2jaqt.nix

27 lines
270 B
Nix
Raw Normal View History

2015-03-23 10:01:27 -07:00
{ faust
, jack2Full
2020-05-05 03:45:13 -07:00
, opencv2
2015-03-23 10:01:27 -07:00
, qt4
2018-01-05 14:24:06 -08:00
, libsndfile
, which
2015-03-23 10:01:27 -07:00
}:
faust.wrapWithBuildEnv {
baseName = "faust2jaqt";
scripts = [
"faust2jaqt"
"faust2jackserver"
];
propagatedBuildInputs = [
jack2Full
2020-05-05 03:45:13 -07:00
opencv2
2015-03-23 10:01:27 -07:00
qt4
2018-01-05 14:24:06 -08:00
libsndfile
which
2015-03-23 10:01:27 -07:00
];
}