summary refs log tree commit diff
path: root/pkgs/applications/audio/faust/faust2jack.nix
blob: bd213bfcadbe4f428684e07b5ca95103aa3919d0 (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
27
28
{ faust
, gtk2
, jack2
, alsa-lib
, opencv
, libsndfile
, which
}:

faust.wrapWithBuildEnv {

  baseName = "faust2jack";

  scripts = [
    "faust2jack"
    "faust2jackconsole"
  ];

  propagatedBuildInputs = [
    gtk2
    jack2
    alsa-lib
    opencv
    libsndfile
    which
  ];

}