nixpkgs/pkgs/applications/audio/faust/faust2lv2.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
273 B
Nix
Raw Normal View History

2016-10-30 14:59:25 +00:00
{ boost
, faust
2015-03-23 17:01:27 +00:00
, lv2
2023-04-03 14:04:07 +00:00
, qtbase
, which
2015-03-23 17:01:27 +00:00
}:
faust.wrapWithBuildEnv {
baseName = "faust2lv2";
2023-04-03 14:04:07 +00:00
propagatedBuildInputs = [ boost lv2 qtbase ];
dontWrapQtApps = true;
2015-03-23 17:01:27 +00:00
2023-04-03 14:04:07 +00:00
preFixup = ''
sed -i "/QMAKE=/c\ QMAKE="${qtbase.dev}/bin/qmake"" "$out"/bin/faust2lv2;
'';
2015-03-23 17:01:27 +00:00
}