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

29 lines
287 B
Nix
Raw Normal View History

2015-03-23 17:01:27 +00:00
{ faust
, gtk2
2021-03-14 16:03:47 +00:00
, jack2
, alsa-lib
, opencv
2018-01-05 22:24:06 +00:00
, libsndfile
2020-08-27 15:08:08 +00:00
, which
2015-03-23 17:01:27 +00:00
}:
faust.wrapWithBuildEnv {
baseName = "faust2jack";
scripts = [
"faust2jack"
"faust2jackconsole"
];
propagatedBuildInputs = [
gtk2
2021-03-14 16:03:47 +00:00
jack2
alsa-lib
opencv
2018-01-05 22:24:06 +00:00
libsndfile
2020-08-27 15:08:08 +00:00
which
2015-03-23 17:01:27 +00:00
];
}