mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
27 lines
264 B
Nix
27 lines
264 B
Nix
{ faust
|
|
, jack2
|
|
, qt4
|
|
, libsndfile
|
|
, alsa-lib
|
|
, which
|
|
}:
|
|
|
|
faust.wrapWithBuildEnv {
|
|
|
|
baseName = "faust2jaqt";
|
|
|
|
scripts = [
|
|
"faust2jaqt"
|
|
"faust2jackserver"
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
jack2
|
|
qt4
|
|
libsndfile
|
|
alsa-lib
|
|
which
|
|
];
|
|
|
|
}
|