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

27 lines
270 B
Nix
Raw Normal View History

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