about summary refs log tree commit diff
path: root/pkgs/games/orthorobot
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2021-06-23 12:59:57 +0200
committerGitHub <noreply@github.com>2021-06-23 12:59:57 +0200
commit039b2deca5c26a1a574e37ff5579e6f3ce4e7d69 (patch)
tree3ba496795e7dbf92a042944ac44ea6607aeb1c0a /pkgs/games/orthorobot
parent98991704cb5f9920c6d01c67c81cc1e8d20af05a (diff)
orthorobot: remove phases overwrite
Diffstat (limited to 'pkgs/games/orthorobot')
-rw-r--r--pkgs/games/orthorobot/default.nix6
1 files changed, 2 insertions, 4 deletions
diff --git a/pkgs/games/orthorobot/default.nix b/pkgs/games/orthorobot/default.nix
index e1067645b620a..dc3f3cf0a10e7 100644
--- a/pkgs/games/orthorobot/default.nix
+++ b/pkgs/games/orthorobot/default.nix
@@ -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/";
   };
-
 }