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

faust.wrapWithBuildEnv {

  baseName = "faust2alqt";

  propagatedBuildInputs = [
    alsaLib
    qt4
  ];

}