summary refs log tree commit diff
path: root/pkgs/applications/audio/faust/faust2jaqt.nix
blob: a2f1c2139a1a820e527e9402ff78329bad975842 (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
25
26
{ faust
, jack2Full
, opencv2
, qt4
, libsndfile
, which
}:

faust.wrapWithBuildEnv {

  baseName = "faust2jaqt";

  scripts = [
    "faust2jaqt"
    "faust2jackserver"
  ];

  propagatedBuildInputs = [
    jack2Full
    opencv2
    qt4
    libsndfile
    which
  ];

}