goattracker,goattracker-stereo: add newlines to hooks

This commit is contained in:
Francesco Gazzetta 2024-02-19 15:24:27 +01:00
parent 3d008ce3ff
commit 5333a8f857

View File

@ -43,10 +43,14 @@ in stdenv.mkDerivation (finalAttrs: {
makeFlags = [ "PREFIX=$(out)/bin/" ];
# The zip contains some build artifacts.
prePatch = "make clean";
prePatch = ''
make clean
'';
# The destination does not get created automatically.
preBuild = "mkdir -p $out/bin";
preBuild = ''
mkdir -p $out/bin
'';
# Other files get installed during the build phase.
installPhase = ''