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

29 lines
293 B
Nix
Raw Normal View History

2015-03-23 18:01:27 +01:00
{ faust
, gtk2
, jack2Full
2020-01-27 12:48:57 +01:00
, alsaLib
, opencv
2018-01-05 23:24:06 +01:00
, libsndfile
2020-08-27 17:08:08 +02:00
, which
2015-03-23 18:01:27 +01:00
}:
faust.wrapWithBuildEnv {
baseName = "faust2jack";
scripts = [
"faust2jack"
"faust2jackconsole"
];
propagatedBuildInputs = [
gtk2
jack2Full
2020-01-27 12:48:57 +01:00
alsaLib
opencv
2018-01-05 23:24:06 +01:00
libsndfile
2020-08-27 17:08:08 +02:00
which
2015-03-23 18:01:27 +01:00
];
}