mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
24 lines
250 B
Nix
24 lines
250 B
Nix
{ faust
|
|
, gtk2
|
|
, jack2Full
|
|
, opencv
|
|
}:
|
|
|
|
faust.wrapWithBuildEnv {
|
|
|
|
baseName = "faust2jack";
|
|
|
|
scripts = [
|
|
"faust2jack"
|
|
"faust2jackinternal"
|
|
"faust2jackconsole"
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
gtk2
|
|
jack2Full
|
|
opencv
|
|
];
|
|
|
|
}
|