mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-29 06:45:54 +03:00
23 lines
214 B
Nix
23 lines
214 B
Nix
|
{ faust
|
||
|
, jack2
|
||
|
, opencv
|
||
|
, qt4
|
||
|
}:
|
||
|
|
||
|
faust.wrapWithBuildEnv {
|
||
|
|
||
|
baseName = "faust2jaqt";
|
||
|
|
||
|
scripts = [
|
||
|
"faust2jaqt"
|
||
|
"faust2jackserver"
|
||
|
];
|
||
|
|
||
|
propagatedBuildInputs = [
|
||
|
jack2
|
||
|
opencv
|
||
|
qt4
|
||
|
];
|
||
|
|
||
|
}
|