summary refs log tree commit diff
path: root/pkgs/applications/audio/faust/faust2jaqt.nix
blob: 6bebd97ddd246fcdd5645ea3b622b83ab3a6196c (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
, jack2
, qt4
, libsndfile
, alsa-lib
, which
}:

faust.wrapWithBuildEnv {

  baseName = "faust2jaqt";

  scripts = [
    "faust2jaqt"
    "faust2jackserver"
  ];

  propagatedBuildInputs = [
    jack2
    qt4
    libsndfile
    alsa-lib
    which
  ];

}