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

faust.wrapWithBuildEnv {

  baseName = "faust2jaqt";

  scripts = [
    "faust2jaqt"
    "faust2jackserver"
  ];

  propagatedBuildInputs = [
    jack2
    opencv
    qt4
  ];

}