about summary refs log tree commit diff
path: root/pkgs/applications/audio/faust/faust2jaqt.nix
blob: 144d19cb01e4c5dc5dc5da4d04ebe473039f16e0 (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
, opencv
, qt4
, libsndfile
, which
}:

faust.wrapWithBuildEnv {

  baseName = "faust2jaqt";

  scripts = [
    "faust2jaqt"
    "faust2jackserver"
  ];

  propagatedBuildInputs = [
    jack2Full
    opencv
    qt4
    libsndfile
    which
  ];

}