summary refs log tree commit diff
path: root/pkgs/applications/audio/faust/faust2alqt.nix
blob: 111d1c9e55744d6f6720c0ff652771dd782481ad (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ faust
, alsa-lib
, qt4
}:

faust.wrapWithBuildEnv {

  baseName = "faust2alqt";

  propagatedBuildInputs = [
    alsa-lib
    qt4
  ];

}