move exe to bin folder

This commit is contained in:
David Mosbach 2024-01-27 21:08:38 +00:00
parent 9b7565ef0a
commit c4910c9690

View File

@ -49,7 +49,8 @@
stack build --verbose stack build --verbose
''; '';
installPhase = '' installPhase = ''
mv .stack-work/install/${system}/*/*/bin/${name}-exe $out/${name} mkdir -p $out/bin
mv .stack-work/install/${system}/*/*/bin/${name}-exe $out/bin/${name}
echo "moved" echo "moved"
''; '';
}; };