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

faust.wrapWithBuildEnv {

  baseName = "faust2jack";

  scripts = [
    "faust2jack"
    "faust2jackconsole"
  ];

  propagatedBuildInputs = [
    gtk2
    jack2
    alsaLib
    opencv
    libsndfile
    which
  ];

}