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

27 lines
264 B
Nix
Raw Normal View History

2015-03-23 17:01:27 +00:00
{ faust
2021-03-14 16:03:47 +00:00
, jack2
2015-03-23 17:01:27 +00:00
, qt4
2018-01-05 22:24:06 +00:00
, libsndfile
, alsa-lib
, which
2015-03-23 17:01:27 +00:00
}:
faust.wrapWithBuildEnv {
baseName = "faust2jaqt";
scripts = [
"faust2jaqt"
"faust2jackserver"
];
propagatedBuildInputs = [
2021-03-14 16:03:47 +00:00
jack2
2015-03-23 17:01:27 +00:00
qt4
2018-01-05 22:24:06 +00:00
libsndfile
alsa-lib
which
2015-03-23 17:01:27 +00:00
];
}