Merge pull request #127885 from SuperSandro2000/SuperSandro2000-patch-1

orthorobot: remove phases overwrite
This commit is contained in:
Sandro 2021-06-23 13:43:33 +02:00 committed by GitHub
commit 0ba004e97d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -34,10 +34,9 @@ stdenv.mkDerivation {
nativeBuildInputs = [ makeWrapper ];
buildInputs = [ lua love zip ];
phases = [ "unpackPhase" "installPhase" ];
dontBuild = true;
installPhase =
''
installPhase = ''
mkdir -p $out/bin $out/share/games/lovegames $out/share/applications
zip -9 -r ${pname}.love ./*
mv ${pname}.love $out/share/games/lovegames/${pname}.love
@ -53,5 +52,4 @@ stdenv.mkDerivation {
license = licenses.free;
downloadPage = "http://stabyourself.net/orthorobot/";
};
}