26 lines
278 B
Nix
Raw Normal View History

2015-03-23 12:01:27 -05:00
{ faust
, gtk2
, jack2Full
2015-03-23 12:01:27 -05:00
, opencv
2018-01-05 23:24:06 +01:00
, libsndfile
2015-03-23 12:01:27 -05:00
}:
faust.wrapWithBuildEnv {
baseName = "faust2jack";
scripts = [
"faust2jack"
"faust2jackinternal"
"faust2jackconsole"
];
propagatedBuildInputs = [
gtk2
jack2Full
2015-03-23 12:01:27 -05:00
opencv
2018-01-05 23:24:06 +01:00
libsndfile
2015-03-23 12:01:27 -05:00
];
}