summary refs log tree commit diff
path: root/pkgs/applications/audio/faust/faust2jaqt.nix
blob: 5a015e5ca31e57a3d005063ae71d4bcbc0579330 (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
24
{ faust
, jack2Full
, opencv
, qt4
, libsndfile
}:

faust.wrapWithBuildEnv {

  baseName = "faust2jaqt";

  scripts = [
    "faust2jaqt"
    "faust2jackserver"
  ];

  propagatedBuildInputs = [
    jack2Full
    opencv
    qt4
    libsndfile
  ];

}