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

27 lines
277 B
Nix
Raw Normal View History

2015-03-23 17:01:27 +00:00
{ faust
, gtk2
, jack2Full
2020-01-27 11:48:57 +00:00
, alsaLib
2020-05-05 10:44:55 +00:00
, opencv2
2018-01-05 22:24:06 +00:00
, libsndfile
2015-03-23 17:01:27 +00:00
}:
faust.wrapWithBuildEnv {
baseName = "faust2jack";
scripts = [
"faust2jack"
"faust2jackconsole"
];
propagatedBuildInputs = [
gtk2
jack2Full
2020-01-27 11:48:57 +00:00
alsaLib
2020-05-05 10:44:55 +00:00
opencv2
2018-01-05 22:24:06 +00:00
libsndfile
2015-03-23 17:01:27 +00:00
];
}