nixpkgs/pkgs/applications/audio/faust/faust2lv2.nix
2024-07-26 11:36:49 +02:00

19 lines
265 B
Nix

{ boost
, faust
, lv2
, qtbase
}:
faust.wrapWithBuildEnv {
baseName = "faust2lv2";
propagatedBuildInputs = [ boost lv2 qtbase ];
dontWrapQtApps = true;
preFixup = ''
sed -i "/QMAKE=/c\ QMAKE="${qtbase.dev}/bin/qmake"" "$out"/bin/faust2lv2;
'';
}