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

25 lines
250 B
Nix
Raw Normal View History

2015-03-23 18:01:27 +01:00
{ faust
, jack2Full
2015-03-23 18:01:27 +01:00
, opencv
, qt4
2018-01-05 23:24:06 +01:00
, libsndfile
2015-03-23 18:01:27 +01:00
}:
faust.wrapWithBuildEnv {
baseName = "faust2jaqt";
scripts = [
"faust2jaqt"
"faust2jackserver"
];
propagatedBuildInputs = [
jack2Full
2015-03-23 18:01:27 +01:00
opencv
qt4
2018-01-05 23:24:06 +01:00
libsndfile
2015-03-23 18:01:27 +01:00
];
}