summary refs log tree commit diff
path: root/pkgs/applications/audio/faust/faust2alsa.nix
blob: 17cec46f6c6aa963981523886770cb3307fb2a79 (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
29
{ faust
, alsaLib
, atk
, cairo
, fontconfig
, freetype
, gdk_pixbuf
, glib
, gtk2
, pango
}:

faust.wrapWithBuildEnv {

  baseName = "faust2alsa";

  propagatedBuildInputs = [
    alsaLib
    atk
    cairo
    fontconfig
    freetype
    gdk_pixbuf
    glib
    gtk2
    pango
  ];

}