about summary refs log tree commit diff
path: root/pkgs/applications/audio/faust/faust2lv2.nix
blob: b7e9ffb488c43ffa9ec6e71adaf3de1dfa66e5c9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ boost
, faust
, lv2
, qtbase
, which
}:

faust.wrapWithBuildEnv {

  baseName = "faust2lv2";

  propagatedBuildInputs = [ boost lv2 qtbase ];

  dontWrapQtApps = true;

  preFixup = ''
    sed -i "/QMAKE=/c\ QMAKE="${qtbase.dev}/bin/qmake"" "$out"/bin/faust2lv2;
  '';
}