mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
25 lines
250 B
Nix
25 lines
250 B
Nix
{ faust
|
|
, jack2Full
|
|
, opencv
|
|
, qt4
|
|
, libsndfile
|
|
}:
|
|
|
|
faust.wrapWithBuildEnv {
|
|
|
|
baseName = "faust2jaqt";
|
|
|
|
scripts = [
|
|
"faust2jaqt"
|
|
"faust2jackserver"
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
jack2Full
|
|
opencv
|
|
qt4
|
|
libsndfile
|
|
];
|
|
|
|
}
|