Merge pull request #13539 from leenaars/orthorobot
orthorobot: init at 1.0
This commit is contained in:
commit
c5f4000040
63
pkgs/games/orthorobot/default.nix
Normal file
63
pkgs/games/orthorobot/default.nix
Normal file
@ -0,0 +1,63 @@
|
|||||||
|
{ stdenv, fetchurl, unzip, love, lua, makeWrapper, makeDesktopItem }:
|
||||||
|
|
||||||
|
let
|
||||||
|
pname = "orthorobot";
|
||||||
|
version = "1.0";
|
||||||
|
|
||||||
|
icon = fetchurl {
|
||||||
|
url = "http://stabyourself.net/images/screenshots/orthorobot-5.png";
|
||||||
|
sha256 = "13fa4divdqz4vpdij1lcs5kf6w2c4jm3cc9q6bz5h7lkng31jzi6";
|
||||||
|
};
|
||||||
|
|
||||||
|
desktopItem = makeDesktopItem {
|
||||||
|
name = "orthorobot";
|
||||||
|
exec = "${pname}";
|
||||||
|
icon = "${icon}";
|
||||||
|
comment = "Robot game";
|
||||||
|
desktopName = "Orthorobot";
|
||||||
|
genericName = "orthorobot";
|
||||||
|
categories = "Game;";
|
||||||
|
};
|
||||||
|
|
||||||
|
in
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "${pname}-${version}";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "http://stabyourself.net/dl.php?file=${pname}/${pname}-source.zip";
|
||||||
|
sha256 = "023nc3zwjkbmy4c8w6mfg39mg69zpqqr2gzlmp4fpydrjas70kbl";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ makeWrapper unzip ];
|
||||||
|
buildInputs = [ lua love ];
|
||||||
|
|
||||||
|
phases = [ "unpackPhase" "installPhase" ];
|
||||||
|
|
||||||
|
unpackPhase = ''
|
||||||
|
unzip -j $src
|
||||||
|
'';
|
||||||
|
|
||||||
|
installPhase =
|
||||||
|
''
|
||||||
|
mkdir -p $out/bin
|
||||||
|
mkdir -p $out/share/games/lovegames
|
||||||
|
|
||||||
|
cp -v ./*.love $out/share/games/lovegames/${pname}.love
|
||||||
|
|
||||||
|
makeWrapper ${love}/bin/love $out/bin/${pname} --add-flags $out/share/games/lovegames/${pname}.love
|
||||||
|
|
||||||
|
chmod +x $out/bin/${pname}
|
||||||
|
mkdir -p $out/share/applications
|
||||||
|
ln -s ${desktopItem}/share/applications/* $out/share/applications/
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Recharge the robot";
|
||||||
|
maintainers = with maintainers; [ leenaars ];
|
||||||
|
platforms = platforms.linux;
|
||||||
|
license = licenses.free;
|
||||||
|
downloadPage = http://stabyourself.net/orthorobot/;
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
@ -14633,6 +14633,8 @@ let
|
|||||||
|
|
||||||
openxcom = callPackage ../games/openxcom { };
|
openxcom = callPackage ../games/openxcom { };
|
||||||
|
|
||||||
|
orthorobot = callPackage ../games/orthorobot { love = love_0_7; };
|
||||||
|
|
||||||
performous = callPackage ../games/performous { };
|
performous = callPackage ../games/performous { };
|
||||||
|
|
||||||
pingus = callPackage ../games/pingus {};
|
pingus = callPackage ../games/pingus {};
|
||||||
|
Loading…
Reference in New Issue
Block a user