mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
29 lines
292 B
Nix
29 lines
292 B
Nix
{ faust
|
|
, jack2Full
|
|
, opencv2
|
|
, qt4
|
|
, libsndfile
|
|
, alsaLib
|
|
, which
|
|
}:
|
|
|
|
faust.wrapWithBuildEnv {
|
|
|
|
baseName = "faust2jaqt";
|
|
|
|
scripts = [
|
|
"faust2jaqt"
|
|
"faust2jackserver"
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
jack2Full
|
|
opencv2
|
|
qt4
|
|
libsndfile
|
|
alsaLib
|
|
which
|
|
];
|
|
|
|
}
|