9c6ee729d6
GitOrigin-RevId: 6cee3b5893090b0f5f0a06b4cf42ca4e60e5d222
41 lines
1 KiB
Nix
41 lines
1 KiB
Nix
{ faust
|
|
, alsa-lib
|
|
, qtbase
|
|
, writeText
|
|
, makeWrapper
|
|
}:
|
|
let
|
|
# Wrap the binary coming out of the the compilation script, so it knows QT_PLUGIN_PATH
|
|
wrapBinary = writeText "wrapBinary" ''
|
|
source ${makeWrapper}/nix-support/setup-hook
|
|
for p in $FILES; do
|
|
workpath=$PWD
|
|
cd -- "$(dirname "$p")"
|
|
binary=$(basename --suffix=.dsp "$p")
|
|
rm -f .$binary-wrapped
|
|
wrapProgram $binary --set QT_PLUGIN_PATH "${qtbase}/${qtbase.qtPluginPrefix}"
|
|
sed -i $binary -e 's@exec@cd "$(dirname "$(readlink -f "''${BASH_SOURCE[0]}")")" \&\& exec@g'
|
|
cd $workpath
|
|
done
|
|
'';
|
|
in
|
|
faust.wrapWithBuildEnv {
|
|
|
|
baseName = "faust2alqt";
|
|
|
|
propagatedBuildInputs = [
|
|
alsa-lib
|
|
qtbase
|
|
];
|
|
|
|
dontWrapQtApps = true;
|
|
|
|
preFixup = ''
|
|
for script in "$out"/bin/*; do
|
|
# append the wrapping code to the compilation script
|
|
cat ${wrapBinary} >> $script
|
|
# prevent the qmake error when running the script
|
|
sed -i "/QMAKE=/c\ QMAKE="${qtbase.dev}/bin/qmake"" $script
|
|
done
|
|
'';
|
|
}
|