summary refs log tree commit diff
path: root/pkgs/applications/audio/faust/faust2jack.nix
blob: 9dfb7f875c533121602e50b72d097e3da9dacdd2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ faust
, gtk
, jack2Full
, opencv
}:

faust.wrapWithBuildEnv {

  baseName = "faust2jack";

  scripts = [
    "faust2jack"
    "faust2jackinternal"
    "faust2jackconsole"
  ];

  propagatedBuildInputs = [
    gtk
    jack2Full
    opencv
  ];

}