mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 20:03:16 +00:00
20 lines
273 B
Nix
20 lines
273 B
Nix
{ 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;
|
|
'';
|
|
}
|